com.aol.acc
Enum AccAvTrackProp

java.lang.Object
  extended by java.lang.Enum<AccAvTrackProp>
      extended by com.aol.acc.AccAvTrackProp
All Implemented Interfaces:
AccEnum, java.io.Serializable, java.lang.Comparable<AccAvTrackProp>

public enum AccAvTrackProp
extends java.lang.Enum<AccAvTrackProp>
implements AccEnum

The IAccAvTrack interface encapsulates information about an
audio/video track. AccAvTrackProp_Name is required; all other
properties are optional.


Enum Constant Summary
ImageReferences
          Most representative image should be first.
Link
          Link (e.g., where to access the track directly)
Name
          Track name
UNKNOWNVALUE
           
 
Method Summary
 boolean equals(int i)
           
static AccAvTrackProp intToEnum(int value)
           
 AccAvTrackProp or(AccAvTrackProp val)
           
 int value()
           
static AccAvTrackProp valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static AccAvTrackProp[] 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
 

Enum Constant Detail

UNKNOWNVALUE

public static final AccAvTrackProp UNKNOWNVALUE

Name

public static final AccAvTrackProp Name
Track name


Link

public static final AccAvTrackProp Link
Link (e.g., where to access the track directly)


ImageReferences

public static final AccAvTrackProp ImageReferences
Most representative image should be first.

Method Detail

values

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

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

valueOf

public static AccAvTrackProp 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

value

public final int value()
Specified by:
value in interface AccEnum

equals

public final boolean equals(int i)

or

public final AccAvTrackProp or(AccAvTrackProp val)

intToEnum

public static AccAvTrackProp intToEnum(int value)