public enum PolicyComplianceType extends Enum<PolicyComplianceType>
Java class for PolicyComplianceType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="PolicyComplianceType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="Calculating..."/>
<enumeration value="Not Assessed"/>
<enumeration value="Did Not Pass"/>
<enumeration value="Conditional Pass"/>
<enumeration value="Pass"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
CALCULATING |
CONDITIONAL_PASS |
DID_NOT_PASS |
NOT_ASSESSED |
PASS |
| Modifier and Type | Method and Description |
|---|---|
static PolicyComplianceType |
fromValue(String v) |
String |
value() |
static PolicyComplianceType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PolicyComplianceType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PolicyComplianceType CALCULATING
public static final PolicyComplianceType NOT_ASSESSED
public static final PolicyComplianceType DID_NOT_PASS
public static final PolicyComplianceType CONDITIONAL_PASS
public static final PolicyComplianceType PASS
public static PolicyComplianceType[] values()
for (PolicyComplianceType c : PolicyComplianceType.values()) System.out.println(c);
public static PolicyComplianceType 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 nullpublic String value()
public static PolicyComplianceType fromValue(String v)
Copyright © 2004-2015. All Rights Reserved.