Enum Class TextUnderlineType
- All Implemented Interfaces:
Serializable,Comparable<TextUnderlineType>,Constable
Indicates the type of underline for text.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionSpecifies a dash line underline.Specifies a dash underline.Specifies a dashed long line underline.Specifies a long heavy line underline.Specifies a dot dash line underline.Specifies a dot dash heavy line underline.Specifies a dot dot dash line underline.Specifies a dot dot dash heavy line underline.Specifies a dotted line underline.Specifies a dotted heavy line underline.Specifies a double line underline.Specifies a heavy line underline.Specifies no underline.Specifies a single line underline.Specifies a wavy line underline.Specifies a wavy double line underline.Specifies a wavy heavy line underline.Specifies underlining words. -
Method Summary
Modifier and TypeMethodDescriptionstatic TextUnderlineTypeReturns the enum constant of this class with the specified name.static TextUnderlineType[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
None
Specifies no underline. -
Words
Specifies underlining words. -
Single
Specifies a single line underline. -
Double
Specifies a double line underline. -
Heavy
Specifies a heavy line underline. -
Dotted
Specifies a dotted line underline. -
DottedHeavy
Specifies a dotted heavy line underline. -
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. -
Wavy
Specifies a wavy line underline. -
WavyHeavy
Specifies a wavy heavy line underline. -
WavyDouble
Specifies a wavy double line underline.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-