public enum UnderlineType extends java.lang.Enum<UnderlineType>
Enum Constant and Description |
---|
DASH |
DASH_HEAVY |
DASH_LONG |
DASH_LONG_HEAVY |
DOT_DASH |
DOT_DASH_HEAVY |
DOT_DOT_DASH |
DOT_DOT_DASH_HEAVY |
DOTTED |
DOTTED_HEAVY |
DOUBLE |
HEAVY |
NONE |
SINGLE |
WAVY |
WAVY_DOUBLE |
WAVY_HEAVY |
WORDS |
Modifier and Type | Method and Description |
---|---|
static UnderlineType |
valueOf(java.lang.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 DASH
public static final UnderlineType DASH_HEAVY
public static final UnderlineType DASH_LONG
public static final UnderlineType DASH_LONG_HEAVY
public static final UnderlineType DOUBLE
public static final UnderlineType DOT_DASH
public static final UnderlineType DOT_DASH_HEAVY
public static final UnderlineType DOT_DOT_DASH
public static final UnderlineType DOT_DOT_DASH_HEAVY
public static final UnderlineType DOTTED
public static final UnderlineType DOTTED_HEAVY
public static final UnderlineType HEAVY
public static final UnderlineType NONE
public static final UnderlineType SINGLE
public static final UnderlineType WAVY
public static final UnderlineType WAVY_DOUBLE
public static final UnderlineType WAVY_HEAVY
public static final UnderlineType WORDS
public static UnderlineType[] values()
for (UnderlineType c : UnderlineType.values()) System.out.println(c);
public static UnderlineType 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 nullCopyright 2021 The Apache Software Foundation or its licensors, as applicable.