Package net.i2p.router.news
Enum NewsXMLParser.XHTMLMode
- All Implemented Interfaces:
Serializable
,Comparable<NewsXMLParser.XHTMLMode>
,java.lang.constant.Constable
- Enclosing class:
NewsXMLParser
The action taken when encountering a non-whitelisted
XHTML element or blacklisted attribute in the feed content.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionabort the parsing on any non-whitelisted element or blacklisted attributedisable all whitelist and blacklist checksremove only the non-whitelisted element, remove only the blacklisted attributeremove only the non-whitelisted element, or element containing a blacklisted attributeskip the feed entry containing the non-whitelisted element or blacklisted attribute -
Method Summary
Modifier and TypeMethodDescriptionstatic NewsXMLParser.XHTMLMode
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.
-
Enum Constant Details
-
ABORT
abort the parsing on any non-whitelisted element or blacklisted attribute -
REMOVE_ELEMENT
remove only the non-whitelisted element, or element containing a blacklisted attribute -
REMOVE_ATTRIBUTE
remove only the non-whitelisted element, remove only the blacklisted attribute -
SKIP_ENTRY
skip the feed entry containing the non-whitelisted element or blacklisted attribute -
ALLOW_ALL
disable all whitelist and blacklist checks
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-