Enum B2BReplenishmentRecurrenceEnum
- java.lang.Object
-
- java.lang.Enum<B2BReplenishmentRecurrenceEnum>
-
- de.hybris.platform.b2bacceleratorfacades.order.data.B2BReplenishmentRecurrenceEnum
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<B2BReplenishmentRecurrenceEnum>
public enum B2BReplenishmentRecurrenceEnum extends java.lang.Enum<B2BReplenishmentRecurrenceEnum>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DAILYGenerated enum value forB2BReplenishmentRecurrenceEnum.DAILYvalue defined at extensionb2bacceleratorfacades.MONTHLYGenerated enum value forB2BReplenishmentRecurrenceEnum.MONTHLYvalue defined at extensionb2bacceleratorfacades.WEEKLYGenerated enum value forB2BReplenishmentRecurrenceEnum.WEEKLYvalue defined at extensionb2bacceleratorfacades.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static B2BReplenishmentRecurrenceEnumvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static B2BReplenishmentRecurrenceEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DAILY
public static final B2BReplenishmentRecurrenceEnum DAILY
Generated enum value forB2BReplenishmentRecurrenceEnum.DAILYvalue defined at extensionb2bacceleratorfacades.
-
WEEKLY
public static final B2BReplenishmentRecurrenceEnum WEEKLY
Generated enum value forB2BReplenishmentRecurrenceEnum.WEEKLYvalue defined at extensionb2bacceleratorfacades.
-
MONTHLY
public static final B2BReplenishmentRecurrenceEnum MONTHLY
Generated enum value forB2BReplenishmentRecurrenceEnum.MONTHLYvalue defined at extensionb2bacceleratorfacades.
-
-
Method Detail
-
values
public static B2BReplenishmentRecurrenceEnum[] 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 (B2BReplenishmentRecurrenceEnum c : B2BReplenishmentRecurrenceEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static B2BReplenishmentRecurrenceEnum 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
-
-