|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
ObjectEnum<JsonEscapeLevel>
org.unbescape.json.JsonEscapeLevel
public enum JsonEscapeLevel
Levels defined for JSON escape/unescape operations:
For further information, see the Glossary and the References sections at the
documentation for the JsonEscape class.
| Enum Constant Summary | |
|---|---|
LEVEL_1_BASIC_ESCAPE_SET
Level 1 escape: escape only the basic escape set: Single Escape Chars plus non-displayable control chars. |
|
LEVEL_2_ALL_NON_ASCII_PLUS_BASIC_ESCAPE_SET
Level 2 escape: escape the basic escape set plus all non-ASCII characters (result will always be ASCII). |
|
LEVEL_3_ALL_NON_ALPHANUMERIC
Level 3 escape: escape all non-alphanumeric characteres (escape all but those in the A-Z, a-z and 0-9 ranges). |
|
LEVEL_4_ALL_CHARACTERS
Level 4 escape: escape all characters, including alphanumeric. |
|
| Method Summary | |
|---|---|
static JsonEscapeLevel |
forLevel(int level)
Utility method for obtaining an enum value from its corresponding int level value. |
int |
getEscapeLevel()
Return the int escape level. |
static JsonEscapeLevel |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static JsonEscapeLevel[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class Enum |
|---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final JsonEscapeLevel LEVEL_1_BASIC_ESCAPE_SET
public static final JsonEscapeLevel LEVEL_2_ALL_NON_ASCII_PLUS_BASIC_ESCAPE_SET
public static final JsonEscapeLevel LEVEL_3_ALL_NON_ALPHANUMERIC
public static final JsonEscapeLevel LEVEL_4_ALL_CHARACTERS
| Method Detail |
|---|
public static JsonEscapeLevel[] values()
for (JsonEscapeLevel c : JsonEscapeLevel.values()) System.out.println(c);
public static JsonEscapeLevel 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 nullpublic static JsonEscapeLevel forLevel(int level)
Utility method for obtaining an enum value from its corresponding int level value.
level - the level
public int getEscapeLevel()
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||