Enum FirstOrLastGroupType
- java.lang.Object
-
- java.lang.Enum<FirstOrLastGroupType>
-
- de.hybris.platform.sap.productconfig.facades.FirstOrLastGroupType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<FirstOrLastGroupType>
public enum FirstOrLastGroupType extends java.lang.Enum<FirstOrLastGroupType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description FIRSTGenerated enum value forFirstOrLastGroupType.FIRSTvalue defined at extensionsapproductconfigfacades.INTERJACENTGenerated enum value forFirstOrLastGroupType.INTERJACENTvalue defined at extensionsapproductconfigfacades.LASTGenerated enum value forFirstOrLastGroupType.LASTvalue defined at extensionsapproductconfigfacades.ONLYONEGenerated enum value forFirstOrLastGroupType.ONLYONEvalue defined at extensionsapproductconfigfacades.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static FirstOrLastGroupTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static FirstOrLastGroupType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
FIRST
public static final FirstOrLastGroupType FIRST
Generated enum value forFirstOrLastGroupType.FIRSTvalue defined at extensionsapproductconfigfacades.
-
INTERJACENT
public static final FirstOrLastGroupType INTERJACENT
Generated enum value forFirstOrLastGroupType.INTERJACENTvalue defined at extensionsapproductconfigfacades.
-
LAST
public static final FirstOrLastGroupType LAST
Generated enum value forFirstOrLastGroupType.LASTvalue defined at extensionsapproductconfigfacades.
-
ONLYONE
public static final FirstOrLastGroupType ONLYONE
Generated enum value forFirstOrLastGroupType.ONLYONEvalue defined at extensionsapproductconfigfacades.
-
-
Method Detail
-
values
public static FirstOrLastGroupType[] 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 (FirstOrLastGroupType c : FirstOrLastGroupType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FirstOrLastGroupType 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
-
-