public enum ComplianceState extends java.lang.Enum<ComplianceState>
Enum Constant and Description |
---|
COMPLIANT
compliant
|
CONFIG_MANAGER
config Manager
|
CONFLICT
conflict
|
ERROR
error
|
IN_GRACE_PERIOD
in Grace Period
|
NONCOMPLIANT
noncompliant
|
UNEXPECTED_VALUE
For ComplianceState values that were not expected from the service
|
UNKNOWN
unknown
|
Modifier and Type | Method and Description |
---|---|
static ComplianceState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ComplianceState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ComplianceState UNKNOWN
public static final ComplianceState COMPLIANT
public static final ComplianceState NONCOMPLIANT
public static final ComplianceState CONFLICT
public static final ComplianceState ERROR
public static final ComplianceState IN_GRACE_PERIOD
public static final ComplianceState CONFIG_MANAGER
public static final ComplianceState UNEXPECTED_VALUE
public static ComplianceState[] values()
for (ComplianceState c : ComplianceState.values()) System.out.println(c);
public static ComplianceState 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