Enum SourcingFactorIdentifiersEnum
- java.lang.Object
-
- java.lang.Enum<SourcingFactorIdentifiersEnum>
-
- de.hybris.platform.warehousing.data.sourcing.SourcingFactorIdentifiersEnum
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<SourcingFactorIdentifiersEnum>
public enum SourcingFactorIdentifiersEnum extends java.lang.Enum<SourcingFactorIdentifiersEnum>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ALLOCATIONGenerated enum value forSourcingFactorIdentifiersEnum.Allocation("warehousing.factor.allocation.weight")value defined at extensionwarehousing.DISTANCEGenerated enum value forSourcingFactorIdentifiersEnum.Distance("warehousing.factor.distance.weight")value defined at extensionwarehousing.PRIORITYGenerated enum value forSourcingFactorIdentifiersEnum.Priority("warehousing.factor.priority.weight")value defined at extensionwarehousing.SCOREGenerated enum value forSourcingFactorIdentifiersEnum.Score("warehousing.factor.score.weight")value defined at extensionwarehousing.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetValue()static SourcingFactorIdentifiersEnumvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static SourcingFactorIdentifiersEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DISTANCE
public static final SourcingFactorIdentifiersEnum DISTANCE
Generated enum value forSourcingFactorIdentifiersEnum.Distance("warehousing.factor.distance.weight")value defined at extensionwarehousing.
-
ALLOCATION
public static final SourcingFactorIdentifiersEnum ALLOCATION
Generated enum value forSourcingFactorIdentifiersEnum.Allocation("warehousing.factor.allocation.weight")value defined at extensionwarehousing.
-
PRIORITY
public static final SourcingFactorIdentifiersEnum PRIORITY
Generated enum value forSourcingFactorIdentifiersEnum.Priority("warehousing.factor.priority.weight")value defined at extensionwarehousing.
-
SCORE
public static final SourcingFactorIdentifiersEnum SCORE
Generated enum value forSourcingFactorIdentifiersEnum.Score("warehousing.factor.score.weight")value defined at extensionwarehousing.
-
-
Method Detail
-
values
public static SourcingFactorIdentifiersEnum[] 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 (SourcingFactorIdentifiersEnum c : SourcingFactorIdentifiersEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SourcingFactorIdentifiersEnum valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
getValue
public java.lang.String getValue()
-
-