public enum UserAttributeType extends Enum<UserAttributeType>
| Enum Constant and Description |
|---|
DISPLAY_LAYOUT
stores the user's preferred UI display layout
|
STRATEGY_ENGINES
list of strategy engines known to this user
|
| Modifier and Type | Method and Description |
|---|---|
static UserAttributeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UserAttributeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UserAttributeType DISPLAY_LAYOUT
public static final UserAttributeType STRATEGY_ENGINES
public static UserAttributeType[] values()
for (UserAttributeType c : UserAttributeType.values()) System.out.println(c);
public static UserAttributeType 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. All rights reserved.