public enum TextOverflowMode extends Enum<TextOverflowMode>
Defines text overflow mode for rendering spreadsheet documents into HTML.
Enum Constant and Description |
---|
AUTO_FIT_COLUMN
Expand columns to fit the text.
|
HIDE_TEXT
Hide overflow text.
|
OVERLAY
Overlay next cells even they are not empty.
|
OVERLAY_IF_NEXT_IS_EMPTY
Overlay next cells only if they are empty.
|
Modifier and Type | Method and Description |
---|---|
static TextOverflowMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TextOverflowMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TextOverflowMode AUTO_FIT_COLUMN
Expand columns to fit the text.
public static final TextOverflowMode HIDE_TEXT
Hide overflow text.
public static final TextOverflowMode OVERLAY
Overlay next cells even they are not empty.
public static final TextOverflowMode OVERLAY_IF_NEXT_IS_EMPTY
Overlay next cells only if they are empty.
public static TextOverflowMode 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 nullpublic static TextOverflowMode[] values()
for (TextOverflowMode c : TextOverflowMode.values()) System.out.println(c);