Enum LocalCapture
java.lang.Object
java.lang.Enum<LocalCapture>
org.spongepowered.asm.mixin.injection.callback.LocalCapture
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<LocalCapture>,java.lang.constant.Constable
public enum LocalCapture extends java.lang.Enum<LocalCapture>
Specifies the behaviour for capturing local variables at an injection point.
Since local capture relies on calculating the local variable table for the
target method it is disabled by default for performance reasons. When
capturing is enabled, local variables are passed to the handler method after
the CallbackInfo argument. Since it is entirely possible for another
transformer to make an incompatible change to the the local variable table at
run time, the purpose of this enum is to specify the behaviour for local
capture and the type of recovery to be performed when an incompatible change
is detected.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
java.lang.Enum.EnumDesc<E extends java.lang.Enum<E>> -
Enum Constant Summary
Enum Constants Enum Constant Description CAPTURE_FAILEXCEPTIONCapture locals.CAPTURE_FAILHARDCapture locals.CAPTURE_FAILSOFTCapture locals.NO_CAPTUREDo not capture locals, this is the default behaviourPRINTDo not capture locals. -
Method Summary
Modifier and Type Method Description static LocalCapturevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static LocalCapture[]values()Returns an array containing the constants of this enum type, in the order they are declared.Methods inherited from class java.lang.Enum
clone, compareTo, describeConstable, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOfMethods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
-
Enum Constant Details
-
NO_CAPTURE
Do not capture locals, this is the default behaviour -
PRINT
Do not capture locals. Print the expected method signature to stderr instead. -
CAPTURE_FAILSOFT
Capture locals. If the calculated locals are different from the expected values, log a warning and skip this injection. -
CAPTURE_FAILHARD
Capture locals. If the calculated locals are different from the expected values, throw anError. -
CAPTURE_FAILEXCEPTION
Capture locals. If the calculated locals are different from the expected values, generate a method stub containing an exception. This will allow normal execution to continue unless the callback is encountered.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-