public enum ESCAPE_SYMBOLS extends Enum<ESCAPE_SYMBOLS>
Enum Constant and Description |
---|
BACKSLASH |
EQUAL_SIGN |
PIPE |
Modifier and Type | Method and Description |
---|---|
char |
ch() |
static String |
encodeSpecialSymbols(String value) |
static ESCAPE_SYMBOLS |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ESCAPE_SYMBOLS[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ESCAPE_SYMBOLS BACKSLASH
public static final ESCAPE_SYMBOLS PIPE
public static final ESCAPE_SYMBOLS EQUAL_SIGN
public static ESCAPE_SYMBOLS[] values()
for (ESCAPE_SYMBOLS c : ESCAPE_SYMBOLS.values()) System.out.println(c);
public static ESCAPE_SYMBOLS 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 nullpublic char ch()
Copyright © GigaSpaces.