public static enum Command.WIDTH_ZOOM extends Enum<Command.WIDTH_ZOOM>
Enum Constant and Description |
---|
MUL_1
横向放大1倍(正常)
|
MUL_2
横向放大2倍(倍宽)
|
MUL_3
横向放大3倍
|
MUL_4
横向放大4倍
|
MUL_5
横向放大5倍
|
MUL_6
横向放大6倍
|
MUL_7
横向放大7倍
|
MUL_8
横向放大8倍
|
Modifier and Type | Method and Description |
---|---|
byte |
getValue() |
static Command.WIDTH_ZOOM |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Command.WIDTH_ZOOM[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Command.WIDTH_ZOOM MUL_1
public static final Command.WIDTH_ZOOM MUL_2
public static final Command.WIDTH_ZOOM MUL_3
public static final Command.WIDTH_ZOOM MUL_4
public static final Command.WIDTH_ZOOM MUL_5
public static final Command.WIDTH_ZOOM MUL_6
public static final Command.WIDTH_ZOOM MUL_7
public static final Command.WIDTH_ZOOM MUL_8
public static Command.WIDTH_ZOOM[] values()
for (Command.WIDTH_ZOOM c : Command.WIDTH_ZOOM.values()) System.out.println(c);
public static Command.WIDTH_ZOOM 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 nullpublic byte getValue()