public enum AccountPages extends Enum<AccountPages>
Enum Constant and Description |
---|
ACCOUNT |
APPLICATIONS |
FEDERATED_IDENTITY |
LOG |
PASSWORD |
RESOURCE_DETAIL |
RESOURCES |
SESSIONS |
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 FEDERATED_IDENTITY
public static final AccountPages LOG
public static final AccountPages SESSIONS
public static final AccountPages APPLICATIONS
public static final AccountPages RESOURCES
public static final AccountPages RESOURCE_DETAIL
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 © 2020 JBoss by Red Hat. All rights reserved.