public enum CuttingModeEnum extends Enum<CuttingModeEnum>
Enum Constant and Description |
---|
AFTER_EACH_ORDER |
AFTER_EACH_TICKET |
AT_THE_END_OF_MASS_PRINTING |
NONE |
Modifier and Type | Method and Description |
---|---|
static CuttingModeEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CuttingModeEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CuttingModeEnum NONE
public static final CuttingModeEnum AFTER_EACH_TICKET
public static final CuttingModeEnum AFTER_EACH_ORDER
public static final CuttingModeEnum AT_THE_END_OF_MASS_PRINTING
public static CuttingModeEnum[] values()
for (CuttingModeEnum c : CuttingModeEnum.values()) System.out.println(c);
public static CuttingModeEnum valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2020. All rights reserved.