|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<NewsXMLParser.XHTMLMode>
net.i2p.router.news.NewsXMLParser.XHTMLMode
public static enum NewsXMLParser.XHTMLMode
The action taken when encountering a non-whitelisted XHTML element or blacklisted attribute in the feed content.
Enum Constant Summary | |
---|---|
ABORT
abort the parsing on any non-whitelisted element or blacklisted attribute |
|
ALLOW_ALL
disable all whitelist and blacklist checks |
|
REMOVE_ATTRIBUTE
remove only the non-whitelisted element, remove only the blacklisted attribute |
|
REMOVE_ELEMENT
remove only the non-whitelisted element, or element containing a blacklisted attribute |
|
SKIP_ENTRY
skip the feed entry containing the non-whitelisted element or blacklisted attribute |
Method Summary | |
---|---|
static NewsXMLParser.XHTMLMode |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static NewsXMLParser.XHTMLMode[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final NewsXMLParser.XHTMLMode ABORT
public static final NewsXMLParser.XHTMLMode REMOVE_ELEMENT
public static final NewsXMLParser.XHTMLMode REMOVE_ATTRIBUTE
public static final NewsXMLParser.XHTMLMode SKIP_ENTRY
public static final NewsXMLParser.XHTMLMode ALLOW_ALL
Method Detail |
---|
public static NewsXMLParser.XHTMLMode[] values()
for (NewsXMLParser.XHTMLMode c : NewsXMLParser.XHTMLMode.values()) System.out.println(c);
public static NewsXMLParser.XHTMLMode valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |