org.jaudiotagger.tag.mp4.field
Enum Mp4FieldType
java.lang.Object
java.lang.Enum<Mp4FieldType>
org.jaudiotagger.tag.mp4.field.Mp4FieldType
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<Mp4FieldType>
public enum Mp4FieldType
- extends java.lang.Enum<Mp4FieldType>
Describes the possible types of data held within a Databox
Method Summary |
int |
getFileClassId()
|
static Mp4FieldType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static Mp4FieldType[] |
values()
Returns an array containing the constants of this enum type, in
the order they're declared. |
Methods inherited from class java.lang.Enum |
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
getClass, notify, notifyAll, wait, wait, wait |
NUMERIC
public static final Mp4FieldType NUMERIC
TEXT
public static final Mp4FieldType TEXT
BYTE
public static final Mp4FieldType BYTE
COVERART_JPEG
public static final Mp4FieldType COVERART_JPEG
COVERART_PNG
public static final Mp4FieldType COVERART_PNG
values
public static final Mp4FieldType[] values()
- Returns an array containing the constants of this enum type, in
the order they're declared. This method may be used to iterate
over the constants as follows:
for(Mp4FieldType c : Mp4FieldType.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they're declared
valueOf
public static Mp4FieldType valueOf(java.lang.String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name
- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
getFileClassId
public int getFileClassId()