Package com.onslip360
Enum API.ProductGroup.SecondaryKitchenPrinterMode
- java.lang.Object
-
- java.lang.Enum<API.ProductGroup.SecondaryKitchenPrinterMode>
-
- com.onslip360.API.ProductGroup.SecondaryKitchenPrinterMode
-
- All Implemented Interfaces:
Serializable
,Comparable<API.ProductGroup.SecondaryKitchenPrinterMode>
- Enclosing class:
- API.ProductGroup
public static enum API.ProductGroup.SecondaryKitchenPrinterMode extends Enum<API.ProductGroup.SecondaryKitchenPrinterMode>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description __
ALWAYS
INFORMATIVE
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static API.ProductGroup.SecondaryKitchenPrinterMode
valueOf(String name)
Returns the enum constant of this type with the specified name.static API.ProductGroup.SecondaryKitchenPrinterMode[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
INFORMATIVE
public static final API.ProductGroup.SecondaryKitchenPrinterMode INFORMATIVE
-
ALWAYS
public static final API.ProductGroup.SecondaryKitchenPrinterMode ALWAYS
-
__
public static final API.ProductGroup.SecondaryKitchenPrinterMode __
-
-
Method Detail
-
values
public static API.ProductGroup.SecondaryKitchenPrinterMode[] 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 (API.ProductGroup.SecondaryKitchenPrinterMode c : API.ProductGroup.SecondaryKitchenPrinterMode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static API.ProductGroup.SecondaryKitchenPrinterMode 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
-
-