| |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<FontUnderline>
org.apache.poi.ss.usermodel.FontUnderline
public enum FontUnderline
the different types of possible underline formatting
Enum Constant Summary | |
---|---|
DOUBLE Double-line underlining under each character in the cell. | |
DOUBLE_ACCOUNTING Double-line accounting underlining under each character in the cell. | |
NONE No underline. | |
SINGLE Single-line underlining under each character in the cell. | |
SINGLE_ACCOUNTING Single-line accounting underlining under each character in the cell. |
Method Summary | |
---|---|
byte | getByteValue() |
int | getValue() |
static FontUnderline | valueOf(byte value) |
static FontUnderline | valueOf(int value) |
static FontUnderline | valueOf(java.lang.String name) Returns the enum constant of this type with the specified name. |
static FontUnderline[] | values() Returns an array containing the constants of this enum type, inthe order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final FontUnderline SINGLE
public static final FontUnderline DOUBLE
public static final FontUnderline SINGLE_ACCOUNTING
public static final FontUnderline DOUBLE_ACCOUNTING
public static final FontUnderline NONE
Method Detail |
---|
public static FontUnderline[] values()
for (FontUnderline c : FontUnderline.values()) System.out.println(c);
public static FontUnderline valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constantwith the specified namejava.lang.NullPointerException
- if the argument is nullpublic int getValue()
public byte getByteValue()
public static FontUnderline valueOf(int value)
public static FontUnderline valueOf(byte value)
| |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |