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

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

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

Audio profile, held in Section 5 this is usually type LOW_COMPLEXITY


Enum Constant Summary
CELP
           
HILN
           
HVXC
           
LOW_COMPLEXITY
           
MAIN
           
MAIN_SYNTHESIS
           
SCALEABLE
           
T_F
           
T_F_LC
           
T_F_MAIN
           
TTSI
           
TWIN_VQ
           
WAVETABLE
           
 
Field Summary
private  java.lang.String description
           
private  int id
           
 
Method Summary
 java.lang.String getDescription()
           
 int getId()
           
static Mp4EsdsBox.AudioProfile valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Mp4EsdsBox.AudioProfile[] 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

MAIN

public static final Mp4EsdsBox.AudioProfile MAIN

LOW_COMPLEXITY

public static final Mp4EsdsBox.AudioProfile LOW_COMPLEXITY

SCALEABLE

public static final Mp4EsdsBox.AudioProfile SCALEABLE

T_F

public static final Mp4EsdsBox.AudioProfile T_F

T_F_MAIN

public static final Mp4EsdsBox.AudioProfile T_F_MAIN

T_F_LC

public static final Mp4EsdsBox.AudioProfile T_F_LC

TWIN_VQ

public static final Mp4EsdsBox.AudioProfile TWIN_VQ

CELP

public static final Mp4EsdsBox.AudioProfile CELP

HVXC

public static final Mp4EsdsBox.AudioProfile HVXC

HILN

public static final Mp4EsdsBox.AudioProfile HILN

TTSI

public static final Mp4EsdsBox.AudioProfile TTSI

MAIN_SYNTHESIS

public static final Mp4EsdsBox.AudioProfile MAIN_SYNTHESIS

WAVETABLE

public static final Mp4EsdsBox.AudioProfile WAVETABLE
Field Detail

id

private int id

description

private java.lang.String description
Method Detail

values

public static Mp4EsdsBox.AudioProfile[] 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.AudioProfile c : Mp4EsdsBox.AudioProfile.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.AudioProfile 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()

getDescription

public java.lang.String getDescription()