public enum IdentifierFixerConfig extends java.lang.Enum<IdentifierFixerConfig>
Transformer.identifierFixerFactory(IdentifierFixerConfig).| Enum Constant and Description |
|---|
ALL
Checks all Local variables if they are valid java identifiers.
|
SNOWMEN
Only replaces snowman character used by Minecraft.
|
| Modifier and Type | Method and Description |
|---|---|
static IdentifierFixerConfig |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static IdentifierFixerConfig[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IdentifierFixerConfig ALL
public static final IdentifierFixerConfig SNOWMEN
public static IdentifierFixerConfig[] values()
for (IdentifierFixerConfig c : IdentifierFixerConfig.values()) System.out.println(c);
public static IdentifierFixerConfig 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 null