Package net.pricefx.common.api
Enum CalculationResultType
- Object
-
- Enum<CalculationResultType>
-
- CalculationResultType
-
- All Implemented Interfaces:
Serializable
,Comparable<CalculationResultType>
public enum CalculationResultType extends Enum<CalculationResultType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description COMPOSITEFLEXCHART
COMPOSITEOFSIMPLE
CONFIGURATORENTRY
CONFIGURATORENTRYARRAY
CONTRACT
DASHBOARD
DASHBOARDCONTROLLER
FLEXCHART
GAUGE
HIGHCHART
HIGHMAP
MATRIX
MODELRECORDS
PAQUERY
QUOTE
REBATEAGREEMENT
REBATERECORD
SIMPLE
WORKFLOW
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CalculationResultType
valueOf(String name)
Returns the enum constant of this type with the specified name.static CalculationResultType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SIMPLE
public static final CalculationResultType SIMPLE
-
MATRIX
public static final CalculationResultType MATRIX
-
GAUGE
public static final CalculationResultType GAUGE
-
QUOTE
public static final CalculationResultType QUOTE
-
CONTRACT
public static final CalculationResultType CONTRACT
-
REBATEAGREEMENT
public static final CalculationResultType REBATEAGREEMENT
-
WORKFLOW
public static final CalculationResultType WORKFLOW
-
CONFIGURATORENTRY
public static final CalculationResultType CONFIGURATORENTRY
-
FLEXCHART
public static final CalculationResultType FLEXCHART
-
HIGHCHART
public static final CalculationResultType HIGHCHART
-
HIGHMAP
public static final CalculationResultType HIGHMAP
-
DASHBOARD
public static final CalculationResultType DASHBOARD
-
REBATERECORD
public static final CalculationResultType REBATERECORD
-
DASHBOARDCONTROLLER
public static final CalculationResultType DASHBOARDCONTROLLER
-
CONFIGURATORENTRYARRAY
public static final CalculationResultType CONFIGURATORENTRYARRAY
-
COMPOSITEFLEXCHART
public static final CalculationResultType COMPOSITEFLEXCHART
-
COMPOSITEOFSIMPLE
public static final CalculationResultType COMPOSITEOFSIMPLE
-
PAQUERY
public static final CalculationResultType PAQUERY
-
MODELRECORDS
public static final CalculationResultType MODELRECORDS
-
-
Method Detail
-
values
public static CalculationResultType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (CalculationResultType c : CalculationResultType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CalculationResultType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-