public static enum IInsnListEx.SpecialNodeType extends java.lang.Enum<IInsnListEx.SpecialNodeType>
IInsnListEx.getSpecialNode(org.spongepowered.asm.mixin.injection.code.IInsnListEx.SpecialNodeType)| Enum Constant and Description |
|---|
CTOR_BODY
The location after field initialisers but before the first
constructor body instruction, requires line numbers to be present in
the target class
|
DELEGATE_CTOR
The delegate constructor call in a constructor
|
INITIALISER_INJECTION_POINT
The location for injected initialisers in a constructor
|
| Modifier and Type | Method and Description |
|---|---|
static IInsnListEx.SpecialNodeType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static IInsnListEx.SpecialNodeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IInsnListEx.SpecialNodeType DELEGATE_CTOR
public static final IInsnListEx.SpecialNodeType INITIALISER_INJECTION_POINT
public static final IInsnListEx.SpecialNodeType CTOR_BODY
public static IInsnListEx.SpecialNodeType[] values()
for (IInsnListEx.SpecialNodeType c : IInsnListEx.SpecialNodeType.values()) System.out.println(c);
public static IInsnListEx.SpecialNodeType 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