public static enum Customer.VatNumberStatus extends Enum<Customer.VatNumberStatus>
Enum Constant and Description |
---|
_UNKNOWN |
INVALID |
NOT_VALIDATED |
UNDETERMINED |
VALID |
Modifier and Type | Method and Description |
---|---|
static Customer.VatNumberStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Customer.VatNumberStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Customer.VatNumberStatus VALID
public static final Customer.VatNumberStatus INVALID
public static final Customer.VatNumberStatus NOT_VALIDATED
public static final Customer.VatNumberStatus UNDETERMINED
public static final Customer.VatNumberStatus _UNKNOWN
public static Customer.VatNumberStatus[] values()
for (Customer.VatNumberStatus c : Customer.VatNumberStatus.values()) System.out.println(c);
public static Customer.VatNumberStatus 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 nullCopyright © 2020 ChargeBee. All Rights Reserved.