public static enum RichEditor.Type extends java.lang.Enum<RichEditor.Type>
| Enum Constant and Description |
|---|
BOLD |
H1 |
H2 |
H3 |
H4 |
H5 |
H6 |
ITALIC |
JUSTIFYCENTER |
JUSTIFYFULL |
JUSTIFYLEFT |
JUSTIFYRIGHT |
ORDEREDLIST |
STRIKETHROUGH |
SUBSCRIPT |
SUPERSCRIPT |
UNDERLINE |
UNORDEREDLIST |
| Modifier and Type | Method and Description |
|---|---|
static RichEditor.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RichEditor.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RichEditor.Type BOLD
public static final RichEditor.Type ITALIC
public static final RichEditor.Type SUBSCRIPT
public static final RichEditor.Type SUPERSCRIPT
public static final RichEditor.Type STRIKETHROUGH
public static final RichEditor.Type UNDERLINE
public static final RichEditor.Type H1
public static final RichEditor.Type H2
public static final RichEditor.Type H3
public static final RichEditor.Type H4
public static final RichEditor.Type H5
public static final RichEditor.Type H6
public static final RichEditor.Type ORDEREDLIST
public static final RichEditor.Type UNORDEREDLIST
public static final RichEditor.Type JUSTIFYCENTER
public static final RichEditor.Type JUSTIFYFULL
public static final RichEditor.Type JUSTIFYLEFT
public static final RichEditor.Type JUSTIFYRIGHT
public static RichEditor.Type[] values()
for (RichEditor.Type c : RichEditor.Type.values()) System.out.println(c);
public static RichEditor.Type 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