|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<MP4AtomKey>
org.stanwood.media.store.mp4.MP4AtomKey
public enum MP4AtomKey
A Enum used to represent each of the atom keys
Enum Constant Summary | |
---|---|
ACCOUNT_TYPE
akID atom key |
|
ALBUM
©alb atom key |
|
ALBUM_ARTIST
aART atom key |
|
ARTIST
©ART atom key |
|
ARTWORK
covr atom key |
|
CATALOG_ID
cnID atom key |
|
CATEGORY
catg atom key |
|
CERTIFICATION
---- [com.apple.iTunes;iTunEXTC] atom key |
|
COMMENT
©wrt atom key |
|
COMPILATION
cpil atom key |
|
COMPOSER
©wrt atom key |
|
COPYRIGHT
cprt atom key |
|
COUNTRY_CODE
sfID atom key |
|
DESCRIPTION
desc atom key |
|
DESCRIPTION_LONG
ldes atom key |
|
DESCRIPTION_STORE
sdes atom key |
|
DISK_NUMBER
disk atom key |
|
ENCODED_BY
|
|
ENCODING_TOOL
|
|
FLAVOUR
flvr atom key |
|
GAPLESS_PLAYBACK
pgap atom key |
|
GENRE_PRE_DEFINED
gnre atom key |
|
GENRE_USER_DEFINED
©gen atom key |
|
GROUPING
grup atom key |
|
HD
hdvd atom key |
|
INFO
---- [com.apple.iTunes;iTunMOVI] atom key |
|
KEYWORDS
keyw atom key |
|
LYRICS
|
|
MEDIA_TYPE
stik atom key |
|
MM_VERSION
Key for custom atom holding the MediaManager version |
|
NAME
|
|
PODCAST
pcst atom key |
|
PODCAST_URL
purl atom key |
|
PURCHASE_ACCOUNT
apID atom key |
|
PURCHASED_DATE
purd atom key |
|
RATING
rtng atom key |
|
RELEASE_DATE
©day atom key |
|
SORT_ALBUM
soal atom key |
|
SORT_ALBUM_ARTIST
soaa atom key |
|
SORT_ARTIST
soar atom key |
|
SORT_COMPOSER
soco atom key |
|
SORT_NAME
sonm atom key |
|
SORT_SHOW
sosn atom key |
|
TEMPO
tmpo atom key |
|
TRACK_NUMBER
trkn atom key |
|
TV_EPISODE
tves atom key |
|
TV_EPISODE_ID
tven atom key |
|
TV_NETWORK
tvnn atom key |
|
TV_SEASON
tvsn atom key |
|
TV_SHOW_NAME
tvsh atom key |
Method Summary | |
---|---|
static MP4AtomKey |
fromKey(java.lang.String key)
Used to get the key enum value from the text id of the atom |
static MP4AtomKey |
fromRDNS(java.lang.String name,
java.lang.String domain)
Used to get the key enum value from of the atom from it's reverse DNS name and domain |
java.lang.String |
getDisplayName()
Used to get a name that can be displayed for the atom |
java.lang.String |
getDnsDomain()
Used to get the reverse DNS domain of the atom, or null if it does not have one |
java.lang.String |
getDnsName()
Used to get the reverse DNS name of the atom, or null if it does not have one |
java.lang.String |
getId()
Used to get the id of the atom |
MP4AtomKeyType |
getType()
Used to get the type of the atom |
java.lang.String |
toString()
} |
static MP4AtomKey |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static MP4AtomKey[] |
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, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final MP4AtomKey NAME
public static final MP4AtomKey ARTIST
public static final MP4AtomKey ALBUM_ARTIST
public static final MP4AtomKey ALBUM
public static final MP4AtomKey GROUPING
public static final MP4AtomKey COMPOSER
public static final MP4AtomKey COMMENT
public static final MP4AtomKey FLAVOUR
public static final MP4AtomKey GENRE_PRE_DEFINED
public static final MP4AtomKey GENRE_USER_DEFINED
public static final MP4AtomKey RELEASE_DATE
public static final MP4AtomKey TRACK_NUMBER
public static final MP4AtomKey DISK_NUMBER
public static final MP4AtomKey TEMPO
public static final MP4AtomKey COMPILATION
public static final MP4AtomKey TV_SHOW_NAME
public static final MP4AtomKey TV_EPISODE_ID
public static final MP4AtomKey TV_SEASON
public static final MP4AtomKey TV_EPISODE
public static final MP4AtomKey TV_NETWORK
public static final MP4AtomKey DESCRIPTION
public static final MP4AtomKey DESCRIPTION_STORE
public static final MP4AtomKey DESCRIPTION_LONG
public static final MP4AtomKey LYRICS
public static final MP4AtomKey SORT_NAME
public static final MP4AtomKey SORT_ARTIST
public static final MP4AtomKey SORT_ALBUM_ARTIST
public static final MP4AtomKey SORT_ALBUM
public static final MP4AtomKey SORT_COMPOSER
public static final MP4AtomKey SORT_SHOW
public static final MP4AtomKey ARTWORK
public static final MP4AtomKey COPYRIGHT
public static final MP4AtomKey ENCODING_TOOL
public static final MP4AtomKey ENCODED_BY
public static final MP4AtomKey PURCHASED_DATE
public static final MP4AtomKey PODCAST
public static final MP4AtomKey PODCAST_URL
public static final MP4AtomKey KEYWORDS
public static final MP4AtomKey CATEGORY
public static final MP4AtomKey HD
public static final MP4AtomKey MEDIA_TYPE
public static final MP4AtomKey RATING
public static final MP4AtomKey GAPLESS_PLAYBACK
public static final MP4AtomKey PURCHASE_ACCOUNT
public static final MP4AtomKey ACCOUNT_TYPE
public static final MP4AtomKey CATALOG_ID
public static final MP4AtomKey COUNTRY_CODE
public static final MP4AtomKey CERTIFICATION
public static final MP4AtomKey INFO
public static final MP4AtomKey MM_VERSION
Method Detail |
---|
public static MP4AtomKey[] values()
for (MP4AtomKey c : MP4AtomKey.values()) System.out.println(c);
public static MP4AtomKey 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 getId()
public java.lang.String getDnsName()
public java.lang.String getDnsDomain()
public static MP4AtomKey fromKey(java.lang.String key)
key
- The text id of the atom
public static MP4AtomKey fromRDNS(java.lang.String name, java.lang.String domain)
name
- The atom reverse DNS namedomain
- The atom reverse DNS domain
public MP4AtomKeyType getType()
public java.lang.String getDisplayName()
public java.lang.String toString()
toString
in class java.lang.Enum<MP4AtomKey>
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |