| Enum Constant and Description |
|---|
ANNOTATION
Mark an annotation value to also be remapped.
|
CLASS
A class is the full name of a class separated by dots.
|
DESCRIPTOR
A field or method descriptor.
|
DYNAMIC
Mark a member to be remapped dynamically.
The dynamic remapper class has to be set |
MEMBER
A member is the full owner, name and descriptor of a method/field.
|
SHORT_MEMBER
A short member is only the method name and optionally the descriptor.
This also replaces wildcards with the correct values. |
| Modifier and Type | Method and Description |
|---|---|
static RemapType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RemapType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RemapType SHORT_MEMBER
public static final RemapType MEMBER
public static final RemapType DESCRIPTOR
public static final RemapType CLASS
public static final RemapType ANNOTATION
public static final RemapType DYNAMIC
public static RemapType[] values()
for (RemapType c : RemapType.values()) System.out.println(c);
public static RemapType 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