Enum Threading.Mode

java.lang.Object
java.lang.Enum<Threading.Mode>
com.jogamp.opengl.Threading.Mode
All Implemented Interfaces:
Serializable, Comparable<Threading.Mode>, java.lang.constant.Constable
Enclosing class:
Threading

public static enum Threading.Mode extends Enum<Threading.Mode>
  • Enum Constant Details

    • MT

      public static final Threading.Mode MT
      Full multithreaded OpenGL, i.e. any invoke commands will be issued on the current thread immediately.
    • ST_AWT

      public static final Threading.Mode ST_AWT
      Single-Threaded OpenGL on AWT EDT
    • ST_WORKER

      public static final Threading.Mode ST_WORKER
      Single-Threaded OpenGL on dedicated worker thread.
  • Field Details

    • id

      public final int id
  • Method Details

    • values

      public static Threading.Mode[] 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 Threading.Mode 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