public static enum AltsContext.SecurityLevel extends Enum<AltsContext.SecurityLevel>
| Enum Constant and Description |
|---|
INTEGRITY_AND_PRIVACY |
INTEGRITY_ONLY |
SECURITY_NONE |
UNKNOWN |
| Modifier and Type | Method and Description |
|---|---|
static AltsContext.SecurityLevel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AltsContext.SecurityLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AltsContext.SecurityLevel UNKNOWN
public static final AltsContext.SecurityLevel SECURITY_NONE
public static final AltsContext.SecurityLevel INTEGRITY_ONLY
public static final AltsContext.SecurityLevel INTEGRITY_AND_PRIVACY
public static AltsContext.SecurityLevel[] values()
for (AltsContext.SecurityLevel c : AltsContext.SecurityLevel.values()) System.out.println(c);
public static AltsContext.SecurityLevel 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 null