public enum PosEntryModes extends java.lang.Enum<PosEntryModes>
Enum Constant and Description |
---|
CHIP |
CONTACTLESS |
MAGSTRIPE |
MANUAL |
NONE |
Modifier and Type | Method and Description |
---|---|
char |
getCharacter() |
static PosEntryModes |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PosEntryModes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PosEntryModes NONE
public static final PosEntryModes CHIP
public static final PosEntryModes MANUAL
public static final PosEntryModes MAGSTRIPE
public static final PosEntryModes CONTACTLESS
public static PosEntryModes[] values()
for (PosEntryModes c : PosEntryModes.values()) System.out.println(c);
public static PosEntryModes 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 nullpublic char getCharacter()