public enum UnderlineType extends java.lang.Enum<UnderlineType>
| Enum Constant and Description |
|---|
Double
Specifies that text has a double underline.
|
DoubleAccounting
Specifies that text has a double accounting underline, causing an entire cell to be underlined rather than just the cell text.
|
None
Specifies that text is not underlined.
|
Single
Specifies that text has a single underline.
|
SingleAccounting
Specifies that text has a single accounting underline, causing an entire cell to be underlined rather than just the cell text.
|
| 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 None
public static final UnderlineType Single
public static final UnderlineType Double
public static final UnderlineType SingleAccounting
public static final UnderlineType DoubleAccounting
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 null