Enum Class GraphicsMode

java.lang.Object
java.lang.Enum<GraphicsMode>
nl.colorize.multimedialib.renderer.GraphicsMode
All Implemented Interfaces:
Serializable, Comparable<GraphicsMode>, Constable

public enum GraphicsMode extends Enum<GraphicsMode>
Indicates whether the renderer is capable of displaying 2D or 3D graphics. Certain MultimediaLib features are only available when using a renderer that is actually capable of displaying those features. This can be checked at runtime using Renderer.getGraphicsMode(). Trying to use renderer features on an unsupported platform will result in a UnsupportedGraphicsModeException.
  • Enum Constant Details

  • Method Details

    • values

      public static GraphicsMode[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static GraphicsMode valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null