- 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
Exception
s may belong to the same category.- Since:
- JavaFX 2.0
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum Constants Enum Constant Description MEDIA_CORRUPTED
Indicates an error has occurred: the media appears to be invalid or corrupted.MEDIA_INACCESSIBLE
Indicates an error has occurred: although the media may exist, it is not accessible.MEDIA_UNAVAILABLE
Indicates an error has occurred: the media does not exist or is otherwise unavailable.MEDIA_UNSPECIFIED
Indicates that the media has not been specified.MEDIA_UNSUPPORTED
Indicates that this media type is not supported by this platform.OPERATION_UNSUPPORTED
Indicates that an operation performed on the media is not supported by this platform.PLAYBACK_ERROR
Indicates a playback error which does not fall into any of the other pre-defined categories.PLAYBACK_HALTED
Indicates an unrecoverable error which has resulted in halting playback.UNKNOWN
Indicates an error has occurred for an unknown reason. -
Method Summary
Modifier and Type Method Description static MediaException.Type
valueOf(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_CORRUPTED
Indicates an error has occurred: the media appears to be invalid or corrupted. -
MEDIA_INACCESSIBLE
Indicates an error has occurred: although the media may exist, it is not accessible. -
MEDIA_UNAVAILABLE
Indicates 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_UNSPECIFIED
Indicates that the media has not been specified. -
MEDIA_UNSUPPORTED
Indicates that this media type is not supported by this platform. -
OPERATION_UNSUPPORTED
Indicates that an operation performed on the media is not supported by this platform. -
PLAYBACK_ERROR
Indicates a playback error which does not fall into any of the other pre-defined categories. -
PLAYBACK_HALTED
Indicates an unrecoverable error which has resulted in halting playback. -
UNKNOWN
Indicates an error has occurred for an unknown reason.
-
-
Method Details
-
values
Returns 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
-
valueOf
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
-