public static enum LoginObject.LoginSequence extends Enum<LoginObject.LoginSequence>
| Enum Constant and Description |
|---|
BUTTON |
NEXT |
PASSWORD |
SUBMIT |
USERNAME |
| Modifier and Type | Method and Description |
|---|---|
static LoginObject.LoginSequence |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LoginObject.LoginSequence[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LoginObject.LoginSequence USERNAME
public static final LoginObject.LoginSequence PASSWORD
public static final LoginObject.LoginSequence SUBMIT
public static final LoginObject.LoginSequence NEXT
public static final LoginObject.LoginSequence BUTTON
public static LoginObject.LoginSequence[] values()
for (LoginObject.LoginSequence c : LoginObject.LoginSequence.values()) System.out.println(c);
public static LoginObject.LoginSequence 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 nullCopyright © 2020. All rights reserved.