public static enum Options.GraphicSizeMethodValue extends java.lang.Enum<Options.GraphicSizeMethodValue>
| Enum Constant and Description |
|---|
QUICKSIZING
Use quick algorithm to size graphics
|
SMOOTHGRAYSCALESIZING
Use smooth algorithm for grayscale graphics only
|
SMOOTHSIZING
Use smooth algorithm to size graphics
|
| Modifier and Type | Field and Description |
|---|---|
long |
value |
| Modifier and Type | Method and Description |
|---|---|
static Options.GraphicSizeMethodValue |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Options.GraphicSizeMethodValue[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Options.GraphicSizeMethodValue QUICKSIZING
public static final Options.GraphicSizeMethodValue SMOOTHSIZING
public static final Options.GraphicSizeMethodValue SMOOTHGRAYSCALESIZING
public static Options.GraphicSizeMethodValue[] values()
for (Options.GraphicSizeMethodValue c : Options.GraphicSizeMethodValue.values()) System.out.println(c);
public static Options.GraphicSizeMethodValue 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