public enum AdditiveDiscountAmount extends java.lang.Enum<AdditiveDiscountAmount> implements ICRMLookupEnum
| Enum Constant and Description | 
|---|
| AMOUNT | 
| AMOUNT_PER_PERIOD | 
| FREE_PERIODDeprecated.  | 
| FREE_USAGE | 
| PERCENTAGE | 
| PERCENTAGE_PER_PERIOD | 
| Modifier and Type | Method and Description | 
|---|---|
| java.lang.String | getLabel() | 
| static AdditiveDiscountAmount | valueOf(java.lang.String name)Returns the enum constant of this type with the specified name. | 
| static AdditiveDiscountAmount[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final AdditiveDiscountAmount PERCENTAGE
public static final AdditiveDiscountAmount AMOUNT
@Deprecated public static final AdditiveDiscountAmount FREE_PERIOD
public static final AdditiveDiscountAmount FREE_USAGE
public static final AdditiveDiscountAmount PERCENTAGE_PER_PERIOD
public static final AdditiveDiscountAmount AMOUNT_PER_PERIOD
public static AdditiveDiscountAmount[] values()
for (AdditiveDiscountAmount c : AdditiveDiscountAmount.values()) System.out.println(c);
public static AdditiveDiscountAmount valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String getLabel()
getLabel in interface ICRMLookupEnum