public static enum TextDecoration.Type extends java.lang.Enum<TextDecoration.Type>
| Enum Constant and Description |
|---|
blink
Defines a blinking text.
|
line_through
Defines a line through the text
|
none
Defines a normal text
|
overline
Defines a line over the text
|
underline
Defines a line under the text
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
toString() |
static TextDecoration.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TextDecoration.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TextDecoration.Type none
public static final TextDecoration.Type underline
public static final TextDecoration.Type overline
public static final TextDecoration.Type line_through
public static final TextDecoration.Type blink
public static TextDecoration.Type[] values()
for (TextDecoration.Type c : TextDecoration.Type.values()) System.out.println(c);
public static TextDecoration.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 nullpublic java.lang.String toString()
toString in class java.lang.Enum<TextDecoration.Type>