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