public enum RevenueScheduleType extends Enum<RevenueScheduleType>
| Enum Constant and Description |
|---|
AT_INVOICE |
AT_RANGE_END |
AT_RANGE_START |
EVENLY |
NEVER |
| Modifier and Type | Method and Description |
|---|---|
static RevenueScheduleType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RevenueScheduleType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RevenueScheduleType NEVER
public static final RevenueScheduleType EVENLY
public static final RevenueScheduleType AT_INVOICE
public static final RevenueScheduleType AT_RANGE_END
public static final RevenueScheduleType AT_RANGE_START
public static RevenueScheduleType[] values()
for (RevenueScheduleType c : RevenueScheduleType.values()) System.out.println(c);
public static RevenueScheduleType 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 © 2012-2020. All Rights Reserved.