public static enum Profile.Feature extends Enum<Profile.Feature>
Enum Constant and Description |
---|
ACCOUNT2 |
AUTHORIZATION |
DOCKER |
IMPERSONATION |
SCRIPTS |
TOKEN_EXCHANGE |
Modifier and Type | Method and Description |
---|---|
static Profile.Feature |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Profile.Feature[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Profile.Feature AUTHORIZATION
public static final Profile.Feature IMPERSONATION
public static final Profile.Feature SCRIPTS
public static final Profile.Feature DOCKER
public static final Profile.Feature ACCOUNT2
public static final Profile.Feature TOKEN_EXCHANGE
public static Profile.Feature[] values()
for (Profile.Feature c : Profile.Feature.values()) System.out.println(c);
public static Profile.Feature 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 © 2018 JBoss by Red Hat. All rights reserved.