public static enum MethodTransformer.NoOp extends Enum<MethodTransformer.NoOp> implements MethodTransformer
MethodTransformer.Compound, MethodTransformer.NoOp, MethodTransformer.Simple| Enum Constant and Description |
|---|
INSTANCE
The singleton instance.
|
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
MethodDescription |
transform(TypeDescription instrumentedType,
MethodDescription methodDescription)
Transforms a method.
|
static MethodTransformer.NoOp |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MethodTransformer.NoOp[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MethodTransformer.NoOp INSTANCE
public static MethodTransformer.NoOp[] values()
for (MethodTransformer.NoOp c : MethodTransformer.NoOp.values()) System.out.println(c);
public static MethodTransformer.NoOp 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 nullpublic MethodDescription transform(TypeDescription instrumentedType, MethodDescription methodDescription)
MethodTransformertransform in interface MethodTransformerinstrumentedType - The instrumented type.methodDescription - The method to be transformed.public String toString()
toString in class Enum<MethodTransformer.NoOp>Copyright © 2014–2016. All rights reserved.