Enum Class UltraliteColor

java.lang.Object
java.lang.Enum<UltraliteColor>
com.vuzix.ultralite.UltraliteColor
All Implemented Interfaces:
Serializable, Comparable<UltraliteColor>, Constable

public enum UltraliteColor extends Enum<UltraliteColor>
Possible colors on a canvas.
  • Enum Constant Details

    • BLACK

      public static final UltraliteColor BLACK
      Does not activate the pixel. Leaves fully transparent and adds no light
    • DIM

      public static final UltraliteColor DIM
      Lowest level of visible light added to the pixel
    • MID

      public static final UltraliteColor MID
      Mid level of visible light added to the pixel
    • WHITE

      public static final UltraliteColor WHITE
      Highest level of visible light added to the pixel
  • Method Details

    • values

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