public static enum TextProperties.Underline extends Enum<TextProperties.Underline>
| Enum Constant and Description |
|---|
DASH
"text has a dashed line underlining it"
|
DOT_DASH
" text has a line whose repeating pattern is a dot followed by a dash underlining it"
|
DOT_DOT_DASH
"text has a line whose repeating pattern is two dots followed by a dash underlining it"
|
DOTTED
"text has a dotted line underlining it"
|
LONG_DASH
"text has a dashed line whose dashes are longer than the ones from the dashed line for
value dash underlining it"
|
NONE
"text has no underlining"
|
SOLID
"text has a solid line underlining it"
|
WAVE
"text has a wavy line underlining it"
|
| Modifier and Type | Method and Description |
|---|---|
static TextProperties.Underline |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TextProperties.Underline[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TextProperties.Underline DASH
public static final TextProperties.Underline DOT_DASH
public static final TextProperties.Underline DOT_DOT_DASH
public static final TextProperties.Underline DOTTED
public static final TextProperties.Underline LONG_DASH
public static final TextProperties.Underline NONE
public static final TextProperties.Underline SOLID
public static final TextProperties.Underline WAVE
public static TextProperties.Underline[] values()
for (TextProperties.Underline c : TextProperties.Underline.values()) System.out.println(c);
public static TextProperties.Underline 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 nullCopyright © 2016–2021. All rights reserved.