Enum Class TextUnderlineType
Enum Constant Summary
Enum Constants
Specifies 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 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
All Methods Static Methods Concrete Methods
Returns the enum constant of this class with the specified name.
Returns an array containing the constants of this enum class, in
the order they are declared.
Methods inherited from class java.lang.Enum
clone , compareTo , describeConstable , equals , finalize , getDeclaringClass , hashCode , name , ordinal , toString , valueOf
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 name
NullPointerException
- if the argument is null