public static enum TierTableOutAttributeModel.ComputationMode extends java.lang.Enum<TierTableOutAttributeModel.ComputationMode>
| Enum Constant and Description |
|---|
CUMULATIVE_LINEAR
This type is used to indicate that the number value returned
is the sum of all the linear values in ranges before the range
in which is the input property is, with the prorated value
for the range of the input property.
|
CUMULATIVE_NON_LINEAR
This type is used to indicate that the number value returned
is the sum of the all the values in the ranges before the range
in which is the input property is.
|
SINGLE_LINEAR
This type is used to indicate that the number value returned
is the value matching the range in which the input value is.
|
SINGLE_NON_LINEAR
This type is used to indicate that the number value returned
is the value matching the range in which the input value is.
|
UNSET
This key is used to indicate that calculation mode is not set.
|
| Modifier and Type | Method and Description |
|---|---|
int |
getCode() |
static TierTableOutAttributeModel.ComputationMode |
getFromCode(int code) |
java.lang.String |
getName() |
static TierTableOutAttributeModel.ComputationMode |
parse(java.lang.String name) |
static TierTableOutAttributeModel.ComputationMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TierTableOutAttributeModel.ComputationMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TierTableOutAttributeModel.ComputationMode SINGLE_NON_LINEAR
public static final TierTableOutAttributeModel.ComputationMode SINGLE_LINEAR
public static final TierTableOutAttributeModel.ComputationMode CUMULATIVE_NON_LINEAR
public static final TierTableOutAttributeModel.ComputationMode CUMULATIVE_LINEAR
public static final TierTableOutAttributeModel.ComputationMode UNSET
public static TierTableOutAttributeModel.ComputationMode[] values()
for (TierTableOutAttributeModel.ComputationMode c : TierTableOutAttributeModel.ComputationMode.values()) System.out.println(c);
public static TierTableOutAttributeModel.ComputationMode 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 getName()
public int getCode()
public static TierTableOutAttributeModel.ComputationMode parse(java.lang.String name)
public static TierTableOutAttributeModel.ComputationMode getFromCode(int code)