public static enum Command.WIDTH_ZOOM extends Enum<Command.WIDTH_ZOOM>
Enum Constant and Description |
---|
MUL_1
1x horizontal magnification (normal)
|
MUL_2
2x horizontal magnification (double width)
|
MUL_3
3x horizontal magnification
|
MUL_4
4x horizontal magnification
|
MUL_5
5x horizontal magnification
|
MUL_6
6x horizontal magnification
|
MUL_7
7x horizontal magnification
|
MUL_8
8x horizontal magnification
|
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()