public static enum ComplianceTypes.Status.Values extends java.lang.Enum<ComplianceTypes.Status.Values>
enum
representing this enumeration class.
Ordinals have no semantic meaning (your code should not rely on them).
Enum Constant and Description |
---|
_UNKNOWN
Special
enum constant which is used to represent constants
that do not exist in this enumeration binding. |
COMPLIANT
Represents
ComplianceTypes.Status.COMPLIANT . |
NON_COMPLIANT
Represents
ComplianceTypes.Status.NON_COMPLIANT . |
NOT_APPLICABLE
Represents
ComplianceTypes.Status.NOT_APPLICABLE . |
OUT_OF_DATE
Represents
ComplianceTypes.Status.OUT_OF_DATE . |
UNKNOWN_COMPLIANCE
Represents
ComplianceTypes.Status.UNKNOWN_COMPLIANCE . |
Modifier and Type | Method and Description |
---|---|
static ComplianceTypes.Status.Values |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ComplianceTypes.Status.Values[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ComplianceTypes.Status.Values COMPLIANT
ComplianceTypes.Status.COMPLIANT
.public static final ComplianceTypes.Status.Values NON_COMPLIANT
ComplianceTypes.Status.NON_COMPLIANT
.public static final ComplianceTypes.Status.Values UNKNOWN_COMPLIANCE
ComplianceTypes.Status.UNKNOWN_COMPLIANCE
.public static final ComplianceTypes.Status.Values NOT_APPLICABLE
ComplianceTypes.Status.NOT_APPLICABLE
.public static final ComplianceTypes.Status.Values OUT_OF_DATE
ComplianceTypes.Status.OUT_OF_DATE
.public static final ComplianceTypes.Status.Values _UNKNOWN
enum
constant which is used to represent constants
that do not exist in this enumeration binding. For example if a
client receives an enumeration constant that only exists in the
newer version of the API of the server, the client source code will
see it represented by _UNKNOWN
constant, because its version
of the native Java enum
lacks the new constant.public static ComplianceTypes.Status.Values[] values()
for (ComplianceTypes.Status.Values c : ComplianceTypes.Status.Values.values()) System.out.println(c);
public static ComplianceTypes.Status.Values 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