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