public static enum Signature.Type extends Enum<Signature.Type>
Enum Constant and Description |
---|
CAPTURE_SIGNATURE |
INITIALS |
TAP_TO_SIGN |
Modifier and Type | Method and Description |
---|---|
static Signature.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Signature.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Signature.Type TAP_TO_SIGN
public static final Signature.Type INITIALS
public static final Signature.Type CAPTURE_SIGNATURE
public static Signature.Type[] values()
for (Signature.Type c : Signature.Type.values()) System.out.println(c);
public static Signature.Type valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null