|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<StikValue>
org.stanwood.media.store.mp4.StikValue
public enum StikValue
Used to represent the values of the atom
Enum Constant Summary | |
---|---|
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 |
Method Summary | |
---|---|
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. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
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
Method Detail |
---|
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 name
java.lang.NullPointerException
- if the argument is nullpublic java.lang.String getDescription()
public static StikValue fromId(int value)
value
- The id
public byte getId()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |