public enum WysiwygBodyType extends Enum<WysiwygBodyType>
| Enum Constant and Description |
|---|
PREFORMAT
Body is not wiki markup and should only have html characters escaped.
|
WIKI_MARKUP
Body is wiki markup and should be rendered to html.
|
| Modifier and Type | Method and Description |
|---|---|
static WysiwygBodyType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WysiwygBodyType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WysiwygBodyType WIKI_MARKUP
public static final WysiwygBodyType PREFORMAT
public static WysiwygBodyType[] values()
for (WysiwygBodyType c : WysiwygBodyType.values()) System.out.println(c);
public static WysiwygBodyType 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 nullCopyright © 2019 Atlassian. All rights reserved.