javafx.scene.media
Enum MediaException.Type
- java.lang.Enum<MediaException.Type>
-
- javafx.scene.media.MediaException.Type
All Implemented Interfaces:
Enclosing class:
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
-
Enum Constant Summary
Enum Constants Enum Constant and 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 Summary
All MethodsStatic MethodsConcrete Methods Modifier and Type Method and 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 Detail
-
MEDIA_CORRUPTED
public static final MediaException.Type MEDIA_CORRUPTED
Indicates an error has occurred: the media appears to be invalid or corrupted.
-
MEDIA_INACCESSIBLE
public static final MediaException.Type MEDIA_INACCESSIBLE
Indicates an error has occurred: although the media may exist, it is not accessible.
-
MEDIA_UNAVAILABLE
public static final MediaException.Type 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
public static final MediaException.Type MEDIA_UNSPECIFIED
Indicates that the media has not been specified.
-
MEDIA_UNSUPPORTED
public static final MediaException.Type MEDIA_UNSUPPORTED
Indicates that this media type is not supported by this platform.
-
OPERATION_UNSUPPORTED
public static final MediaException.Type OPERATION_UNSUPPORTED
Indicates that an operation performed on the media is not supported by this platform.
-
PLAYBACK_ERROR
public static final MediaException.Type PLAYBACK_ERROR
Indicates a playback error which does not fall into any of the other pre-defined categories.
-
PLAYBACK_HALTED
public static final MediaException.Type PLAYBACK_HALTED
Indicates an unrecoverable error which has resulted in halting playback.
-
UNKNOWN
public static final MediaException.Type UNKNOWN
Indicates an error has occurred for an unknown reason.
-
-
Method Detail
-
values
public static MediaException.Type[] 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 (MediaException.Type c : MediaException.Type.values()) System.out.println(c);
Returns:
an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MediaException.Type 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 name
-
© 2008, 2025, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from JavaFX API Documentation.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Java, JavaFX and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.