Enum Constant and Description |
---|
AUDIO_BOOK
Audio book type
|
BOOKLET
Booklet type
|
MOVIE
The old movie type
|
MUSIC
The music type
|
MUSIC_VIDEO
Music video type
|
RINGTONE
Ring tone type
|
SHORT_FILM
Movie type
|
TV_SHOW
TV show type
|
Modifier and Type | Method and Description |
---|---|
static StikValue |
fromId(int value)
Get the atom value associated with a ID
|
java.lang.String |
getDescription()
Get the description of the atom value
|
byte |
getId()
Get the atom value id
|
static StikValue |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static StikValue[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StikValue MOVIE
public static final StikValue MUSIC
public static final StikValue AUDIO_BOOK
public static final StikValue MUSIC_VIDEO
public static final StikValue SHORT_FILM
public static final StikValue TV_SHOW
public static final StikValue BOOKLET
public static final StikValue RINGTONE
public static StikValue[] values()
for (StikValue c : StikValue.values()) System.out.println(c);
public static StikValue valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified namejava.lang.NullPointerException
- if the argument is nullpublic java.lang.String getDescription()
public static StikValue fromId(int value)
value
- The idpublic byte getId()