public static enum Escaper.Quoter extends Enum<Escaper.Quoter>
Enum Constant and Description |
---|
DOUBLE |
DOUBLE_WINDOWS_JAVAC |
SINGLE |
Modifier and Type | Method and Description |
---|---|
abstract String |
quote(String str) |
static Escaper.Quoter |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Escaper.Quoter[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Escaper.Quoter SINGLE
public static final Escaper.Quoter DOUBLE
public static final Escaper.Quoter DOUBLE_WINDOWS_JAVAC
public static Escaper.Quoter[] values()
for (Escaper.Quoter c : Escaper.Quoter.values()) System.out.println(c);
public static Escaper.Quoter 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 null