| Enum Constant and Description |
|---|
NONE
No scaling.
|
SCALE_BOTH
Scale both horizontally and vertically.
|
SCALE_HORIZONTAL
Scale horizontally (but not vertically).
|
SCALE_VERTICAL
Scale vertically (but not horizontally).
|
| Modifier and Type | Method and Description |
|---|---|
static Scale2D |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Scale2D[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Scale2D SCALE_HORIZONTAL
public static final Scale2D SCALE_VERTICAL
public static final Scale2D SCALE_BOTH
public static Scale2D[] values()
for (Scale2D c : Scale2D.values()) System.out.println(c);
public static Scale2D valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null