public enum AccountPages extends Enum<AccountPages>
Enum Constant and Description |
---|
ACCOUNT |
LOG |
PASSWORD |
SESSIONS |
SOCIAL |
TOTP |
Modifier and Type | Method and Description |
---|---|
static AccountPages |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AccountPages[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AccountPages ACCOUNT
public static final AccountPages PASSWORD
public static final AccountPages TOTP
public static final AccountPages SOCIAL
public static final AccountPages LOG
public static final AccountPages SESSIONS
public static AccountPages[] values()
for (AccountPages c : AccountPages.values()) System.out.println(c);
public static AccountPages 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 © 2015. All Rights Reserved.