Enum Class HtmlSanitizerPolicy
- All Implemented Interfaces:
Serializable, Comparable<HtmlSanitizerPolicy>, Constable
Supported OWASP HTML sanitizer policies.
- Since:
- 5.1.0
- Author:
- Sergio del Amo
-
Nested Class Summary
Nested classes/interfaces inherited from class Enum
Enum.EnumDesc<E> -
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionorg.owasp.html.PolicyFactoryThe OWASP policy factory for this policy.static HtmlSanitizerPolicyReturns the enum constant of this class with the specified name.static HtmlSanitizerPolicy[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
BLOCKS
Common block elements. -
FORMATTING
Common formatting elements. -
LINKS
Safe link elements and attributes. -
TABLES
Table elements. -
IMAGES
Image elements and attributes. -
STYLES
Inline style attributes.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException- if the argument is null
-
policyFactory
public org.owasp.html.PolicyFactory policyFactory()The OWASP policy factory for this policy.- Returns:
- The OWASP policy factory for this policy.
-