public enum TextUnderlineType extends java.lang.Enum<TextUnderlineType>
| Enum Constant and Description |
|---|
Dash
Specifies a dash line underline.
|
DashHeavy
Specifies a dash underline.
|
DashLong
Specifies a dashed long line underline.
|
DashLongHeavy
Specifies a long heavy line underline.
|
DotDash
Specifies a dot dash line underline.
|
DotDashHeavy
Specifies a dot dash heavy line underline.
|
DotDotDash
Specifies a dot dot dash line underline.
|
DotDotDashHeavy
Specifies a dot dot dash heavy line underline.
|
Dotted
Specifies a dotted line underline.
|
DottedHeavy
Specifies a dotted heavy line underline.
|
Double
Specifies a double line underline.
|
Heavy
Specifies a heavy line underline.
|
None
Specifies no underline.
|
Single
Specifies a single line underline.
|
Wavy
Specifies a wavy line underline.
|
WavyDouble
Specifies a wavy double line underline.
|
WavyHeavy
Specifies a wavy heavy line underline.
|
Words
Specifies underlining words.
|
| Modifier and Type | Method and Description |
|---|---|
static TextUnderlineType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TextUnderlineType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TextUnderlineType None
public static final TextUnderlineType Words
public static final TextUnderlineType Single
public static final TextUnderlineType Double
public static final TextUnderlineType Heavy
public static final TextUnderlineType Dotted
public static final TextUnderlineType DottedHeavy
public static final TextUnderlineType Dash
public static final TextUnderlineType DashHeavy
public static final TextUnderlineType DashLong
public static final TextUnderlineType DashLongHeavy
public static final TextUnderlineType DotDash
public static final TextUnderlineType DotDashHeavy
public static final TextUnderlineType DotDotDash
public static final TextUnderlineType DotDotDashHeavy
public static final TextUnderlineType Wavy
public static final TextUnderlineType WavyHeavy
public static final TextUnderlineType WavyDouble
public static TextUnderlineType[] values()
for (TextUnderlineType c : TextUnderlineType.values()) System.out.println(c);
public static TextUnderlineType 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