public static enum Interface.Remap extends java.lang.Enum<Interface.Remap>
| Enum Constant and Description |
|---|
ALL
Attempt to remap all members of this interface which are declared in
the annotated mixin, including non-prefixed methods which match.
|
FORCE
Attempt to remap all members of this interface which are declared in
the annotated mixin, including non-prefixed methods which match.
|
NONE
Do not remap members matching this interface.
|
ONLY_PREFIXED
Remap only methods in the annotated mixin which are prefixed with the
declared prefix.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
forceRemap()
Returns whether this remap type should force remapping
|
static Interface.Remap |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Interface.Remap[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Interface.Remap ALL
public static final Interface.Remap FORCE
public static final Interface.Remap ONLY_PREFIXED
NONEpublic static final Interface.Remap NONE
public static Interface.Remap[] values()
for (Interface.Remap c : Interface.Remap.values()) System.out.println(c);
public static Interface.Remap 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 boolean forceRemap()