Module javafx.media

Enum MediaException.Type

java.lang.Object
java.lang.Enum<MediaException.Type>
javafx.scene.media.MediaException.Type
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
  • Enum Constant Details

    • 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 Details

    • values

      public static MediaException.Type[] 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

      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
      NullPointerException - if the argument is null