public enum UserAccountSecurityType extends java.lang.Enum<UserAccountSecurityType>
| Enum Constant and Description |
|---|
ADMINISTRATOR
administrator
|
POWER
power
|
STANDARD
standard
|
UNEXPECTED_VALUE
For UserAccountSecurityType values that were not expected from the service
|
UNKNOWN
unknown
|
UNKNOWN_FUTURE_VALUE
unknown Future Value
|
| Modifier and Type | Method and Description |
|---|---|
static UserAccountSecurityType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static UserAccountSecurityType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UserAccountSecurityType UNKNOWN
public static final UserAccountSecurityType STANDARD
public static final UserAccountSecurityType POWER
public static final UserAccountSecurityType ADMINISTRATOR
public static final UserAccountSecurityType UNKNOWN_FUTURE_VALUE
public static final UserAccountSecurityType UNEXPECTED_VALUE
public static UserAccountSecurityType[] values()
for (UserAccountSecurityType c : UserAccountSecurityType.values()) System.out.println(c);
public static UserAccountSecurityType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null