public enum UnderlineType extends Enum<UnderlineType>
Enum Constant and Description |
---|
DOUBLE
Double line underlining
|
NONE
No underlining
|
SINGLE
Single line underlining
|
Modifier and Type | Method and Description |
---|---|
static UnderlineType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UnderlineType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UnderlineType NONE
public static final UnderlineType SINGLE
public static final UnderlineType DOUBLE
public static UnderlineType[] values()
for (UnderlineType c : UnderlineType.values()) System.out.println(c);
public static UnderlineType 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 © 2024. All rights reserved.