public enum FontUnderline extends java.lang.Enum<FontUnderline>
Enum Constant and Description |
---|
DOUBLE
Double-line underlining under each character in the
cell. underlines are drawn through the descenders of
characters such as g and p.
|
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.
|
Modifier and Type | Method and Description |
---|---|
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, in
the order they are declared.
|
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
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 constant with 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)
Copyright © 2005-2010 Potix Corporation. All Rights Reserved.