- All Implemented Interfaces:
- Serializable,- Comparable<MediaException.Type>,- Constable
- Enclosing class:
- MediaException
public static enum MediaException.Type extends Enum<MediaException.Type>
Enumeration describing categories of errors. A number of different
 actual 
Exceptions may belong to the same category.- Since:
- JavaFX 2.0
- 
Nested Class SummaryNested classes/interfaces declared in class java.lang.EnumEnum.EnumDesc<E extends Enum<E>>
- 
Enum Constant SummaryEnum Constants Enum Constant Description MEDIA_CORRUPTEDIndicates an error has occurred: the media appears to be invalid or corrupted.MEDIA_INACCESSIBLEIndicates an error has occurred: although the media may exist, it is not accessible.MEDIA_UNAVAILABLEIndicates an error has occurred: the media does not exist or is otherwise unavailable.MEDIA_UNSPECIFIEDIndicates that the media has not been specified.MEDIA_UNSUPPORTEDIndicates that this media type is not supported by this platform.OPERATION_UNSUPPORTEDIndicates that an operation performed on the media is not supported by this platform.PLAYBACK_ERRORIndicates a playback error which does not fall into any of the other pre-defined categories.PLAYBACK_HALTEDIndicates an unrecoverable error which has resulted in halting playback.UNKNOWNIndicates an error has occurred for an unknown reason.
- 
Method SummaryModifier and Type Method Description static MediaException.TypevalueOf(String name)Returns the enum constant of this type with the specified name.static MediaException.Type[]values()Returns an array containing the constants of this enum type, in the order they are declared.
- 
Enum Constant Details- 
MEDIA_CORRUPTEDIndicates an error has occurred: the media appears to be invalid or corrupted.
- 
MEDIA_INACCESSIBLEIndicates an error has occurred: although the media may exist, it is not accessible.
- 
MEDIA_UNAVAILABLEIndicates an error has occurred: the media does not exist or is otherwise unavailable. This error may be the result of security settings preventing access when running in a browser.
- 
MEDIA_UNSPECIFIEDIndicates that the media has not been specified.
- 
MEDIA_UNSUPPORTEDIndicates that this media type is not supported by this platform.
- 
OPERATION_UNSUPPORTEDIndicates that an operation performed on the media is not supported by this platform.
- 
PLAYBACK_ERRORIndicates a playback error which does not fall into any of the other pre-defined categories.
- 
PLAYBACK_HALTEDIndicates an unrecoverable error which has resulted in halting playback.
- 
UNKNOWNIndicates an error has occurred for an unknown reason.
 
- 
- 
Method Details- 
valuesReturns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
 
- 
valueOfReturns 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 name
- NullPointerException- if the argument is null
 
 
-