protected static enum FieldAccessor.ForParameterSetter.TerminationHandler extends Enum<FieldAccessor.ForParameterSetter.TerminationHandler>
| Enum Constant and Description | 
|---|
NON_OPERATIONAL
Does not return from the method at all. 
 | 
RETURNING
Returns  
void or throws an exception if this is not the return type of the instrumented method. | 
| Modifier and Type | Method and Description | 
|---|---|
protected abstract StackManipulation | 
resolve(MethodDescription instrumentedMethod)
Resolves the return instruction. 
 | 
String | 
toString()  | 
static FieldAccessor.ForParameterSetter.TerminationHandler | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static FieldAccessor.ForParameterSetter.TerminationHandler[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final FieldAccessor.ForParameterSetter.TerminationHandler RETURNING
void or throws an exception if this is not the return type of the instrumented method.public static final FieldAccessor.ForParameterSetter.TerminationHandler NON_OPERATIONAL
public static FieldAccessor.ForParameterSetter.TerminationHandler[] values()
for (FieldAccessor.ForParameterSetter.TerminationHandler c : FieldAccessor.ForParameterSetter.TerminationHandler.values()) System.out.println(c);
public static FieldAccessor.ForParameterSetter.TerminationHandler valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullprotected abstract StackManipulation resolve(MethodDescription instrumentedMethod)
instrumentedMethod - The instrumented method.public String toString()
toString in class Enum<FieldAccessor.ForParameterSetter.TerminationHandler>Copyright © 2014–2016. All rights reserved.