public enum CustomerFinancialStatus extends Enum<CustomerFinancialStatus>
Java class for CustomerFinancialStatus.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="CustomerFinancialStatus">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="ProposalsOnly"/>
<enumeration value="PendingCreditCheck"/>
<enumeration value="ClearFinancialStatus"/>
<enumeration value="SoldToOnly"/>
<enumeration value="CreditHold"/>
<enumeration value="CreditWarning"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
CLEAR_FINANCIAL_STATUS |
CREDIT_HOLD |
CREDIT_WARNING |
PENDING_CREDIT_CHECK |
PROPOSALS_ONLY |
SOLD_TO_ONLY |
| Modifier and Type | Method and Description |
|---|---|
static CustomerFinancialStatus |
fromValue(String v) |
String |
value() |
static CustomerFinancialStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CustomerFinancialStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CustomerFinancialStatus PROPOSALS_ONLY
public static final CustomerFinancialStatus PENDING_CREDIT_CHECK
public static final CustomerFinancialStatus CLEAR_FINANCIAL_STATUS
public static final CustomerFinancialStatus SOLD_TO_ONLY
public static final CustomerFinancialStatus CREDIT_HOLD
public static final CustomerFinancialStatus CREDIT_WARNING
public static CustomerFinancialStatus[] values()
for (CustomerFinancialStatus c : CustomerFinancialStatus.values()) System.out.println(c);
public static CustomerFinancialStatus 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 CustomerFinancialStatus fromValue(String v)
Copyright © 2024. All rights reserved.