public static enum Command.HEIGHT_ZOOM extends Enum<Command.HEIGHT_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.HEIGHT_ZOOM |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Command.HEIGHT_ZOOM[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Command.HEIGHT_ZOOM MUL_1
public static final Command.HEIGHT_ZOOM MUL_2
public static final Command.HEIGHT_ZOOM MUL_3
public static final Command.HEIGHT_ZOOM MUL_4
public static final Command.HEIGHT_ZOOM MUL_5
public static final Command.HEIGHT_ZOOM MUL_6
public static final Command.HEIGHT_ZOOM MUL_7
public static final Command.HEIGHT_ZOOM MUL_8
public static Command.HEIGHT_ZOOM[] values()
for (Command.HEIGHT_ZOOM c : Command.HEIGHT_ZOOM.values()) System.out.println(c);
public static Command.HEIGHT_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()