public static enum TextConstruct.RssFormat extends java.lang.Enum<TextConstruct.RssFormat>
| Enum Constant and Description |
|---|
FULL_HTML
All tags are allowed.
|
PLAIN_TEXT
HTML/XHTML is converted to plain text.
|
| Modifier and Type | Method and Description |
|---|---|
static TextConstruct.RssFormat |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TextConstruct.RssFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TextConstruct.RssFormat PLAIN_TEXT
public static final TextConstruct.RssFormat FULL_HTML
public static TextConstruct.RssFormat[] values()
for (TextConstruct.RssFormat c : TextConstruct.RssFormat.values()) System.out.println(c);
public static TextConstruct.RssFormat 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