Package org.openbravo.costing
Enum CostingAlgorithm.CostDimension
- java.lang.Object
-
- java.lang.Enum<CostingAlgorithm.CostDimension>
-
- org.openbravo.costing.CostingAlgorithm.CostDimension
-
- All Implemented Interfaces:
Serializable
,Comparable<CostingAlgorithm.CostDimension>
- Enclosing class:
- CostingAlgorithm
public static enum CostingAlgorithm.CostDimension extends Enum<CostingAlgorithm.CostDimension>
Dimensions available to manage the cost on an entity.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description Warehouse
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CostingAlgorithm.CostDimension
valueOf(String name)
Returns the enum constant of this type with the specified name.static CostingAlgorithm.CostDimension[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Warehouse
public static final CostingAlgorithm.CostDimension Warehouse
-
-
Method Detail
-
values
public static CostingAlgorithm.CostDimension[] 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 (CostingAlgorithm.CostDimension c : CostingAlgorithm.CostDimension.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CostingAlgorithm.CostDimension 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
-
-