public static enum AutofillField.Type extends Enum<AutofillField.Type>
Enum Constant and Description |
---|
SIGNER_COMPANY |
SIGNER_NAME |
SIGNER_TITLE |
SIGNING_DATE |
Modifier and Type | Method and Description |
---|---|
static AutofillField.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AutofillField.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AutofillField.Type SIGNER_NAME
public static final AutofillField.Type SIGNER_TITLE
public static final AutofillField.Type SIGNER_COMPANY
public static final AutofillField.Type SIGNING_DATE
public static AutofillField.Type[] values()
for (AutofillField.Type c : AutofillField.Type.values()) System.out.println(c);
public static AutofillField.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