public static enum UtilityPage.Type extends java.lang.Enum<UtilityPage.Type>
| Enum Constant and Description |
|---|
COOKIE_POLICY |
CREATE_ACCOUNT |
ERROR |
ERROR_CODE404 |
ERROR_CODE500 |
FORGOT_PASSWORD |
LOGIN |
TERMS_OF_USE |
| Modifier and Type | Method and Description |
|---|---|
static UtilityPage.Type |
create(java.lang.String value) |
java.lang.String |
getValue() |
java.lang.String |
toString() |
static UtilityPage.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static UtilityPage.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UtilityPage.Type COOKIE_POLICY
public static final UtilityPage.Type CREATE_ACCOUNT
public static final UtilityPage.Type ERROR
public static final UtilityPage.Type ERROR_CODE404
public static final UtilityPage.Type ERROR_CODE500
public static final UtilityPage.Type FORGOT_PASSWORD
public static final UtilityPage.Type LOGIN
public static final UtilityPage.Type TERMS_OF_USE
public static UtilityPage.Type[] values()
for (UtilityPage.Type c : UtilityPage.Type.values()) System.out.println(c);
public static UtilityPage.Type 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 static UtilityPage.Type create(java.lang.String value)
public java.lang.String getValue()
public java.lang.String toString()
toString in class java.lang.Enum<UtilityPage.Type>