org.jaudiotagger.audio.mp4.atom
Enum Mp4HdlrBox.MediaDataType

java.lang.Object
  extended by java.lang.Enum<Mp4HdlrBox.MediaDataType>
      extended by org.jaudiotagger.audio.mp4.atom.Mp4HdlrBox.MediaDataType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<Mp4HdlrBox.MediaDataType>
Enclosing class:
Mp4HdlrBox

public static enum Mp4HdlrBox.MediaDataType
extends java.lang.Enum<Mp4HdlrBox.MediaDataType>


Enum Constant Summary
APPL
           
CRSM
           
HINT
           
IPSM
           
M7SM
           
MDIR
           
META
           
MJSM
           
MP7B
           
MP7T
           
OCSM
           
ODSM
           
SDSM
           
SOUN
           
VIDE
           
 
Field Summary
private  java.lang.String description
           
private  java.lang.String id
           
 
Method Summary
 java.lang.String getDescription()
           
 java.lang.String getId()
           
static Mp4HdlrBox.MediaDataType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Mp4HdlrBox.MediaDataType[] 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

ODSM

public static final Mp4HdlrBox.MediaDataType ODSM

CRSM

public static final Mp4HdlrBox.MediaDataType CRSM

SDSM

public static final Mp4HdlrBox.MediaDataType SDSM

M7SM

public static final Mp4HdlrBox.MediaDataType M7SM

OCSM

public static final Mp4HdlrBox.MediaDataType OCSM

IPSM

public static final Mp4HdlrBox.MediaDataType IPSM

MJSM

public static final Mp4HdlrBox.MediaDataType MJSM

MDIR

public static final Mp4HdlrBox.MediaDataType MDIR

MP7B

public static final Mp4HdlrBox.MediaDataType MP7B

MP7T

public static final Mp4HdlrBox.MediaDataType MP7T

VIDE

public static final Mp4HdlrBox.MediaDataType VIDE

SOUN

public static final Mp4HdlrBox.MediaDataType SOUN

HINT

public static final Mp4HdlrBox.MediaDataType HINT

APPL

public static final Mp4HdlrBox.MediaDataType APPL

META

public static final Mp4HdlrBox.MediaDataType META
Field Detail

id

private java.lang.String id

description

private java.lang.String description
Method Detail

values

public static Mp4HdlrBox.MediaDataType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (Mp4HdlrBox.MediaDataType c : Mp4HdlrBox.MediaDataType.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static Mp4HdlrBox.MediaDataType 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
java.lang.NullPointerException - if the argument is null

getId

public java.lang.String getId()

getDescription

public java.lang.String getDescription()