public enum PolicyApprovalStatus extends Enum<PolicyApprovalStatus>
Java class for PolicyApprovalStatus.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="PolicyApprovalStatus">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="UNKNOWN"/>
<enumeration value="APPROVED"/>
<enumeration value="APPROVED_LIMITED"/>
<enumeration value="ELIGIBLE"/>
<enumeration value="UNDER_REVIEW"/>
<enumeration value="DISAPPROVED"/>
<enumeration value="SITE_SUSPENDED"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
APPROVED |
APPROVED_LIMITED |
DISAPPROVED |
ELIGIBLE |
SITE_SUSPENDED |
UNDER_REVIEW |
UNKNOWN |
| Modifier and Type | Method and Description |
|---|---|
static PolicyApprovalStatus |
fromValue(String v) |
String |
value() |
static PolicyApprovalStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PolicyApprovalStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PolicyApprovalStatus UNKNOWN
public static final PolicyApprovalStatus APPROVED
public static final PolicyApprovalStatus APPROVED_LIMITED
public static final PolicyApprovalStatus ELIGIBLE
public static final PolicyApprovalStatus UNDER_REVIEW
public static final PolicyApprovalStatus DISAPPROVED
public static final PolicyApprovalStatus SITE_SUSPENDED
public static PolicyApprovalStatus[] values()
for (PolicyApprovalStatus c : PolicyApprovalStatus.values()) System.out.println(c);
public static PolicyApprovalStatus 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 PolicyApprovalStatus fromValue(String v)
Copyright © 2023. All rights reserved.