public static enum BorderWidthType.Type extends java.lang.Enum<BorderWidthType.Type>
Enum Constant and Description |
---|
inherit
Specifies that the border width should be inherited from the parent
element
|
medium
Defines a medium border.
|
thick
Defines a thick border.
|
thin
Defines a thin border.
|
Modifier and Type | Method and Description |
---|---|
static BorderWidthType.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BorderWidthType.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BorderWidthType.Type thin
public static final BorderWidthType.Type medium
public static final BorderWidthType.Type thick
public static final BorderWidthType.Type inherit
public static BorderWidthType.Type[] values()
for (BorderWidthType.Type c : BorderWidthType.Type.values()) System.out.println(c);
public static BorderWidthType.Type 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