Enum ShiftKeys

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<ShiftKeys>

    public enum ShiftKeys
    extends java.lang.Enum<ShiftKeys>
    • Enum Constant Detail

      • EXCLAMATION_MARK

        public static final ShiftKeys EXCLAMATION_MARK
      • AMPERSAT

        public static final ShiftKeys AMPERSAT
      • OCTOTHORPE

        public static final ShiftKeys OCTOTHORPE
      • DOLLAR_SIGN

        public static final ShiftKeys DOLLAR_SIGN
      • POUNDS_STERLING

        public static final ShiftKeys POUNDS_STERLING
      • PERCENT

        public static final ShiftKeys PERCENT
      • CIRCUMFLEX

        public static final ShiftKeys CIRCUMFLEX
      • AMPERSAND

        public static final ShiftKeys AMPERSAND
      • ASTERISK

        public static final ShiftKeys ASTERISK
      • PARENTHESIS_OPEN

        public static final ShiftKeys PARENTHESIS_OPEN
      • PARENTHESIS_CLOSE

        public static final ShiftKeys PARENTHESIS_CLOSE
      • ADDITION

        public static final ShiftKeys ADDITION
      • BRACE_OPEN

        public static final ShiftKeys BRACE_OPEN
      • BRACE_CLOSE

        public static final ShiftKeys BRACE_CLOSE
      • QUOTATION_MARK

        public static final ShiftKeys QUOTATION_MARK
      • ANGLE_BRACKET_OPEN

        public static final ShiftKeys ANGLE_BRACKET_OPEN
      • ANGLE_BRACKET_CLOSE

        public static final ShiftKeys ANGLE_BRACKET_CLOSE
      • QUESTION_MARK

        public static final ShiftKeys QUESTION_MARK
      • SHEFFER_STROKE

        public static final ShiftKeys SHEFFER_STROKE
    • Method Detail

      • values

        public static ShiftKeys[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (ShiftKeys c : ShiftKeys.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static ShiftKeys valueOf​(java.lang.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:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null
      • getKey

        public static ShiftKeys getKey​(char character)
      • contains

        public static boolean contains​(char character)
      • getCharacter

        public char getCharacter()
      • getCode

        public int getCode()