public static enum KeyAPI.NumberPad extends java.lang.Enum<KeyAPI.NumberPad>
| Enum Constant and Description |
|---|
ADD |
DECIMAL |
DIVIDE |
ENTER |
EQUAL |
MULTIPLY |
N0 |
N1 |
N2 |
N3 |
N4 |
N5 |
N6 |
N7 |
N8 |
N9 |
SUBTRACT |
| Modifier and Type | Method and Description |
|---|---|
static KeyAPI.NumberPad |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static KeyAPI.NumberPad[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final KeyAPI.NumberPad N0
public static final KeyAPI.NumberPad N1
public static final KeyAPI.NumberPad N2
public static final KeyAPI.NumberPad N3
public static final KeyAPI.NumberPad N4
public static final KeyAPI.NumberPad N5
public static final KeyAPI.NumberPad N6
public static final KeyAPI.NumberPad N7
public static final KeyAPI.NumberPad N8
public static final KeyAPI.NumberPad N9
public static final KeyAPI.NumberPad ADD
public static final KeyAPI.NumberPad DECIMAL
public static final KeyAPI.NumberPad DIVIDE
public static final KeyAPI.NumberPad ENTER
public static final KeyAPI.NumberPad EQUAL
public static final KeyAPI.NumberPad MULTIPLY
public static final KeyAPI.NumberPad SUBTRACT
public static KeyAPI.NumberPad[] values()
for (KeyAPI.NumberPad c : KeyAPI.NumberPad.values()) System.out.println(c);
public static KeyAPI.NumberPad valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null