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