public static enum BorderSpecification.Style extends Enum<BorderSpecification.Style>
Enum Constant and Description |
---|
NONE
Defines that a border is not there.
|
SOLID
Defines a solid border.
|
Modifier and Type | Method and Description |
---|---|
static BorderSpecification.Style |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BorderSpecification.Style[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BorderSpecification.Style NONE
public static final BorderSpecification.Style SOLID
public static BorderSpecification.Style[] values()
for (BorderSpecification.Style c : BorderSpecification.Style.values()) System.out.println(c);
public static BorderSpecification.Style valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null