org.jaudiotagger.audio.mp4.atom
Enum Mp4EsdsBox.Kind

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

public static enum Mp4EsdsBox.Kind
extends java.lang.Enum<Mp4EsdsBox.Kind>

File type, held in Section 4 , only really expecting type 0x64 (AAC)


Enum Constant Summary
ADPCM_AUDIO
           
ALAW_AUDIO
           
DOLBY_V3_AUDIO
           
H261_VIDEO
           
H263_VIDEO
           
H264_VIDEO
           
JPEG_VIDEO
           
MPEG1_ADTS
           
MPEG1_VIDEO
           
MPEG2_422_VIDEO
           
MPEG2_ADTS_MAIN
           
MPEG2_HIGH_VIDEO
           
MPEG2_MAIN_VIDEO
           
MPEG2_SIMPLE_VIDEO
           
MPEG2_SNR_VIDEO
           
MPEG2_SPATIAL_VIDEO
           
MPEG4_ADTS_LOW_COMPLEXITY
           
MPEG4_ADTS_MAIN
           
MPEG4_ADTS_SCALEABLE_SAMPLING
           
MPEG4_AUDIO
           
MPEG4_AVC_PPS
           
MPEG4_AVC_SPS
           
MPEG4_VIDEO
           
MULAW_AUDIO
           
PCM_BIG_ENDIAN_AUDIO
           
PCM_LITTLE_ENDIAN_AUDIO
           
PRIVATE_AUDIO
           
PRIVATE_VIDEO
           
V1
           
V2
           
VORBIS_AUDIO
           
YV12_VIDEO
           
 
Field Summary
private  int id
           
 
Method Summary
 int getId()
           
static Mp4EsdsBox.Kind valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Mp4EsdsBox.Kind[] 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

V1

public static final Mp4EsdsBox.Kind V1

V2

public static final Mp4EsdsBox.Kind V2

MPEG4_VIDEO

public static final Mp4EsdsBox.Kind MPEG4_VIDEO

MPEG4_AVC_SPS

public static final Mp4EsdsBox.Kind MPEG4_AVC_SPS

MPEG4_AVC_PPS

public static final Mp4EsdsBox.Kind MPEG4_AVC_PPS

MPEG4_AUDIO

public static final Mp4EsdsBox.Kind MPEG4_AUDIO

MPEG2_SIMPLE_VIDEO

public static final Mp4EsdsBox.Kind MPEG2_SIMPLE_VIDEO

MPEG2_MAIN_VIDEO

public static final Mp4EsdsBox.Kind MPEG2_MAIN_VIDEO

MPEG2_SNR_VIDEO

public static final Mp4EsdsBox.Kind MPEG2_SNR_VIDEO

MPEG2_SPATIAL_VIDEO

public static final Mp4EsdsBox.Kind MPEG2_SPATIAL_VIDEO

MPEG2_HIGH_VIDEO

public static final Mp4EsdsBox.Kind MPEG2_HIGH_VIDEO

MPEG2_422_VIDEO

public static final Mp4EsdsBox.Kind MPEG2_422_VIDEO

MPEG4_ADTS_MAIN

public static final Mp4EsdsBox.Kind MPEG4_ADTS_MAIN

MPEG4_ADTS_LOW_COMPLEXITY

public static final Mp4EsdsBox.Kind MPEG4_ADTS_LOW_COMPLEXITY

MPEG4_ADTS_SCALEABLE_SAMPLING

public static final Mp4EsdsBox.Kind MPEG4_ADTS_SCALEABLE_SAMPLING

MPEG2_ADTS_MAIN

public static final Mp4EsdsBox.Kind MPEG2_ADTS_MAIN

MPEG1_VIDEO

public static final Mp4EsdsBox.Kind MPEG1_VIDEO

MPEG1_ADTS

public static final Mp4EsdsBox.Kind MPEG1_ADTS

JPEG_VIDEO

public static final Mp4EsdsBox.Kind JPEG_VIDEO

PRIVATE_AUDIO

public static final Mp4EsdsBox.Kind PRIVATE_AUDIO

PRIVATE_VIDEO

public static final Mp4EsdsBox.Kind PRIVATE_VIDEO

PCM_LITTLE_ENDIAN_AUDIO

public static final Mp4EsdsBox.Kind PCM_LITTLE_ENDIAN_AUDIO

VORBIS_AUDIO

public static final Mp4EsdsBox.Kind VORBIS_AUDIO

DOLBY_V3_AUDIO

public static final Mp4EsdsBox.Kind DOLBY_V3_AUDIO

ALAW_AUDIO

public static final Mp4EsdsBox.Kind ALAW_AUDIO

MULAW_AUDIO

public static final Mp4EsdsBox.Kind MULAW_AUDIO

ADPCM_AUDIO

public static final Mp4EsdsBox.Kind ADPCM_AUDIO

PCM_BIG_ENDIAN_AUDIO

public static final Mp4EsdsBox.Kind PCM_BIG_ENDIAN_AUDIO

YV12_VIDEO

public static final Mp4EsdsBox.Kind YV12_VIDEO

H264_VIDEO

public static final Mp4EsdsBox.Kind H264_VIDEO

H263_VIDEO

public static final Mp4EsdsBox.Kind H263_VIDEO

H261_VIDEO

public static final Mp4EsdsBox.Kind H261_VIDEO
Field Detail

id

private int id
Method Detail

values

public static Mp4EsdsBox.Kind[] 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 (Mp4EsdsBox.Kind c : Mp4EsdsBox.Kind.values())
    System.out.println(c);

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

valueOf

public static Mp4EsdsBox.Kind 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 int getId()