Enum StencilOp

java.lang.Object
java.lang.Enum<StencilOp>
org.jzy3d.painters.StencilOp
All Implemented Interfaces:
Serializable, Comparable<StencilOp>, java.lang.constant.Constable

public enum StencilOp extends Enum<StencilOp>
  • Enum Constant Details

    • GL_KEEP

      public static final StencilOp GL_KEEP
    • GL_ZERO

      public static final StencilOp GL_ZERO
    • GL_REPLACE

      public static final StencilOp GL_REPLACE
    • GL_INCR

      public static final StencilOp GL_INCR
    • GL_DECR

      public static final StencilOp GL_DECR
    • GL_INVERT

      public static final StencilOp GL_INVERT
  • Method Details

    • values

      public static StencilOp[] 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 StencilOp 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