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