Package org.dreambot.api.utilities
Enum ShiftKeys
- java.lang.Object
-
- java.lang.Enum<ShiftKeys>
-
- org.dreambot.api.utilities.ShiftKeys
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ADDITION
AMPERSAND
AMPERSAT
ANGLE_BRACKET_CLOSE
ANGLE_BRACKET_OPEN
ASTERISK
BRACE_CLOSE
BRACE_OPEN
CIRCUMFLEX
COLON
DASH
DOLLAR_SIGN
EURO
EXCLAMATION_MARK
OCTOTHORPE
PARENTHESIS_CLOSE
PARENTHESIS_OPEN
PERCENT
POUNDS_STERLING
QUESTION_MARK
QUOTATION_MARK
SHEFFER_STROKE
TILDE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static boolean
contains(char character)
char
getCharacter()
int
getCode()
static ShiftKeys
getKey(char character)
static ShiftKeys
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static ShiftKeys[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
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
-
EURO
public static final ShiftKeys EURO
-
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
-
DASH
public static final ShiftKeys DASH
-
ADDITION
public static final ShiftKeys ADDITION
-
BRACE_OPEN
public static final ShiftKeys BRACE_OPEN
-
BRACE_CLOSE
public static final ShiftKeys BRACE_CLOSE
-
COLON
public static final ShiftKeys COLON
-
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
-
TILDE
public static final ShiftKeys TILDE
-
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 namejava.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()
-
-