public enum EscapeChar extends java.lang.Enum<EscapeChar>
Enum Constant and Description |
---|
ecDeuxPoints |
ecVirgule |
Modifier and Type | Method and Description |
---|---|
char |
getC() |
java.lang.String |
getReplacement() |
void |
setC(char c) |
void |
setReplacement(java.lang.String replacement) |
static EscapeChar |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EscapeChar[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EscapeChar ecVirgule
public static final EscapeChar ecDeuxPoints
public static EscapeChar[] values()
for (EscapeChar c : EscapeChar.values()) System.out.println(c);
public static EscapeChar valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified namejava.lang.NullPointerException
- if the argument is nullpublic char getC()
public void setC(char c)
public java.lang.String getReplacement()
public void setReplacement(java.lang.String replacement)