org.olengski.web.security.annotation
public enum EncodeType extends Enum<EncodeType>
| Enum Constant and Description |
|---|
CSS |
DN |
HTML |
HTML_ATTRIBUTE |
JAVASCRIPT |
SQL |
URL |
XML |
XML_ATTRIBUTE |
| Modifier and Type | Method and Description |
|---|---|
static EncodeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EncodeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EncodeType HTML
public static final EncodeType HTML_ATTRIBUTE
public static final EncodeType CSS
public static final EncodeType DN
public static final EncodeType JAVASCRIPT
public static final EncodeType SQL
public static final EncodeType URL
public static final EncodeType XML
public static final EncodeType XML_ATTRIBUTE
public static EncodeType[] values()
for (EncodeType c : EncodeType.values()) System.out.println(c);
public static EncodeType 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 © 2015. All rights reserved.