Package com.restfb.types.threads
Enum TdMediaContainer.ErrorMessage
- java.lang.Object
-
- java.lang.Enum<TdMediaContainer.ErrorMessage>
-
- com.restfb.types.threads.TdMediaContainer.ErrorMessage
-
- All Implemented Interfaces:
Serializable
,Comparable<TdMediaContainer.ErrorMessage>
- Enclosing class:
- TdMediaContainer
public static enum TdMediaContainer.ErrorMessage extends Enum<TdMediaContainer.ErrorMessage>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description FAILED_DOWNLOADING_VIDEO
FAILED_PROCESSING_AUDIO
FAILED_PROCESSING_VIDEO
INVALID_ASPEC_RATIO
INVALID_AUDIO_CHANNEL_LAYOUT
INVALID_AUDIO_CHANNELS
INVALID_BIT_RATE
INVALID_DURATION
INVALID_FRAME_RATE
UNKNOWN
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static TdMediaContainer.ErrorMessage
valueOf(String name)
Returns the enum constant of this type with the specified name.static TdMediaContainer.ErrorMessage[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
FAILED_DOWNLOADING_VIDEO
public static final TdMediaContainer.ErrorMessage FAILED_DOWNLOADING_VIDEO
-
FAILED_PROCESSING_AUDIO
public static final TdMediaContainer.ErrorMessage FAILED_PROCESSING_AUDIO
-
FAILED_PROCESSING_VIDEO
public static final TdMediaContainer.ErrorMessage FAILED_PROCESSING_VIDEO
-
INVALID_ASPEC_RATIO
public static final TdMediaContainer.ErrorMessage INVALID_ASPEC_RATIO
-
INVALID_BIT_RATE
public static final TdMediaContainer.ErrorMessage INVALID_BIT_RATE
-
INVALID_DURATION
public static final TdMediaContainer.ErrorMessage INVALID_DURATION
-
INVALID_FRAME_RATE
public static final TdMediaContainer.ErrorMessage INVALID_FRAME_RATE
-
INVALID_AUDIO_CHANNELS
public static final TdMediaContainer.ErrorMessage INVALID_AUDIO_CHANNELS
-
INVALID_AUDIO_CHANNEL_LAYOUT
public static final TdMediaContainer.ErrorMessage INVALID_AUDIO_CHANNEL_LAYOUT
-
UNKNOWN
public static final TdMediaContainer.ErrorMessage UNKNOWN
-
-
Method Detail
-
values
public static TdMediaContainer.ErrorMessage[] 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 (TdMediaContainer.ErrorMessage c : TdMediaContainer.ErrorMessage.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TdMediaContainer.ErrorMessage valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-