public static enum Control.ImageStyles extends java.lang.Enum<Control.ImageStyles>
Enum Constant and Description |
---|
NONE |
NORMAL_DRAWING |
STRECH_DRAWING |
Modifier and Type | Method and Description |
---|---|
static Control.ImageStyles |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Control.ImageStyles[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Control.ImageStyles NONE
public static final Control.ImageStyles NORMAL_DRAWING
public static final Control.ImageStyles STRECH_DRAWING
public static Control.ImageStyles[] values()
for (Control.ImageStyles c : Control.ImageStyles.values()) System.out.println(c);
public static Control.ImageStyles 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