public enum DunningType extends Enum<DunningType>
| Enum Constant and Description |
|---|
_UNKNOWN |
AUTO_COLLECT |
DIRECT_DEBIT |
OFFLINE |
| Modifier and Type | Method and Description |
|---|---|
static DunningType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DunningType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DunningType AUTO_COLLECT
public static final DunningType OFFLINE
public static final DunningType DIRECT_DEBIT
public static final DunningType _UNKNOWN
public static DunningType[] values()
for (DunningType c : DunningType.values()) System.out.println(c);
public static DunningType 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.