Enum Class KeyMod

java.lang.Object
java.lang.Enum<KeyMod>
com.spinyowl.legui.input.KeyMod
All Implemented Interfaces:
Serializable, Comparable<KeyMod>, Constable

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

    • SHIFT

      public static final KeyMod SHIFT
    • ALT

      public static final KeyMod ALT
    • CONTROL

      public static final KeyMod CONTROL
    • SUPER

      public static final KeyMod SUPER
    • CAPS_LOCK

      public static final KeyMod CAPS_LOCK
    • NUM_LOCK

      public static final KeyMod NUM_LOCK
  • Method Details

    • values

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