public enum ScaleOptions extends java.lang.Enum<ScaleOptions>
| Enum Constant and Description |
|---|
ALL
Freely scale up and down to fill the space
|
DOWN
Scale down only but not up
|
MANUAL
Just use whatever the scale has been set to
|
NONE
No scaling
|
| Modifier and Type | Method and Description |
|---|---|
static ScaleOptions |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ScaleOptions[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ScaleOptions NONE
public static final ScaleOptions DOWN
public static final ScaleOptions ALL
public static final ScaleOptions MANUAL
public static ScaleOptions[] values()
for (ScaleOptions c : ScaleOptions.values()) System.out.println(c);
public static ScaleOptions 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