public enum EntryMethod extends java.lang.Enum<EntryMethod>
Enum Constant and Description |
---|
CARDREAD |
CUSTOM |
FINGER_PRINT |
MANUAL |
OTHER |
QRCODE |
Modifier and Type | Method and Description |
---|---|
static EntryMethod |
findByName(java.lang.String name) |
static EntryMethod |
findByValue(java.lang.String value) |
java.lang.String |
method() |
static EntryMethod |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EntryMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EntryMethod MANUAL
public static final EntryMethod CARDREAD
public static final EntryMethod QRCODE
public static final EntryMethod FINGER_PRINT
public static final EntryMethod OTHER
public static final EntryMethod CUSTOM
public static EntryMethod[] values()
for (EntryMethod c : EntryMethod.values()) System.out.println(c);
public static EntryMethod 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 java.lang.String method()
public static EntryMethod findByValue(java.lang.String value)
public static EntryMethod findByName(java.lang.String name)