public static enum Customer.PiiCleared extends Enum<Customer.PiiCleared>
| Enum Constant and Description |
|---|
_UNKNOWN |
ACTIVE |
CLEARED |
SCHEDULED_FOR_CLEAR |
| Modifier and Type | Method and Description |
|---|---|
static Customer.PiiCleared |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Customer.PiiCleared[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Customer.PiiCleared ACTIVE
public static final Customer.PiiCleared SCHEDULED_FOR_CLEAR
public static final Customer.PiiCleared CLEARED
public static final Customer.PiiCleared _UNKNOWN
public static Customer.PiiCleared[] values()
for (Customer.PiiCleared c : Customer.PiiCleared.values()) System.out.println(c);
public static Customer.PiiCleared 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 © 2023 ChargeBee. All rights reserved.