public static enum BorderProperty.Style extends java.lang.Enum<BorderProperty.Style>
Enum Constant and Description |
---|
dashed
Defines a dashed border.
|
dotted
Defines a dotted border.
|
double_
Defines two borders.
|
groove
Defines a 3D grooved border.
|
hidden
The same as "none", except in border conflict resolution for table
elements
|
inset
Defines a 3D inset border.
|
none
Defines no border
|
outset
Defines a 3D outset border.
|
ridge
Defines a 3D ridged border.
|
solid
Defines a solid border
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
toString() |
static BorderProperty.Style |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BorderProperty.Style[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BorderProperty.Style none
public static final BorderProperty.Style hidden
public static final BorderProperty.Style dotted
public static final BorderProperty.Style dashed
public static final BorderProperty.Style solid
public static final BorderProperty.Style double_
public static final BorderProperty.Style groove
public static final BorderProperty.Style ridge
public static final BorderProperty.Style inset
public static final BorderProperty.Style outset
public static BorderProperty.Style[] values()
for (BorderProperty.Style c : BorderProperty.Style.values()) System.out.println(c);
public static BorderProperty.Style 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 nullpublic java.lang.String toString()
toString
in class java.lang.Enum<BorderProperty.Style>