| Enum Constant and Description |
|---|
ANCHOR |
BOLD |
FONTSIZE |
H1 |
H2 |
H3 |
H4 |
H5 |
H6 |
HTML
parses selected html code/tags and resolves it in the view.
|
INDENT |
ITALIC |
JUSTIFY_CENTER |
JUSTIFY_FULL |
JUSTIFY_LEFT |
JUSTIFY_RIGHT |
ORDEREDLIST |
OUTDENT |
PRE |
QUOTE |
REMOVE_FORMAT |
STRIKETHROUGH |
SUBSCRIPT |
SUPERSCRIPT |
UNDERLINE |
UNORDEREDLIST |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getName() |
static Buttons |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Buttons[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Buttons BOLD
public static final Buttons ITALIC
public static final Buttons UNDERLINE
public static final Buttons STRIKETHROUGH
public static final Buttons SUBSCRIPT
public static final Buttons SUPERSCRIPT
public static final Buttons FONTSIZE
public static final Buttons ANCHOR
public static final Buttons QUOTE
public static final Buttons PRE
public static final Buttons ORDEREDLIST
public static final Buttons UNORDEREDLIST
public static final Buttons INDENT
public static final Buttons OUTDENT
public static final Buttons JUSTIFY_LEFT
public static final Buttons JUSTIFY_CENTER
public static final Buttons JUSTIFY_RIGHT
public static final Buttons JUSTIFY_FULL
public static final Buttons H1
public static final Buttons H2
public static final Buttons H3
public static final Buttons H4
public static final Buttons H5
public static final Buttons H6
public static final Buttons REMOVE_FORMAT
public static final Buttons HTML
public static Buttons[] values()
for (Buttons c : Buttons.values()) System.out.println(c);
public static Buttons 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 java.lang.String getName()