public enum Profile extends Enum<Profile>
| Enum Constant and Description |
|---|
FULL |
PLANNER_AND_RULES |
| Modifier and Type | Method and Description |
|---|---|
List<String> |
getMenuBlackList() |
String |
getName()
A human readable profile
|
String |
toString() |
static Profile |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Profile[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
static Profile |
withName(String name) |
public static final Profile PLANNER_AND_RULES
public static final Profile FULL
public static Profile[] values()
for (Profile c : Profile.values()) System.out.println(c);
public static Profile 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 nullpublic String getName()
Copyright © 2001–2020 JBoss by Red Hat. All rights reserved.