public static enum AgentBuilder.TransformerDecorator.NoOp extends Enum<AgentBuilder.TransformerDecorator.NoOp> implements AgentBuilder.TransformerDecorator
AgentBuilder.TransformerDecorator.NoOp| Enum Constant and Description |
|---|
INSTANCE
The singleton instance.
|
| Modifier and Type | Method and Description |
|---|---|
ResettableClassFileTransformer |
decorate(ResettableClassFileTransformer classFileTransformer)
Decorates the applied class file transformer.
|
static AgentBuilder.TransformerDecorator.NoOp |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AgentBuilder.TransformerDecorator.NoOp[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AgentBuilder.TransformerDecorator.NoOp INSTANCE
public static AgentBuilder.TransformerDecorator.NoOp[] values()
for (AgentBuilder.TransformerDecorator.NoOp c : AgentBuilder.TransformerDecorator.NoOp.values()) System.out.println(c);
public static AgentBuilder.TransformerDecorator.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 ResettableClassFileTransformer decorate(ResettableClassFileTransformer classFileTransformer)
decorate in interface AgentBuilder.TransformerDecoratorclassFileTransformer - The original transformer created by the agent builder.Copyright © 2014–2019. All rights reserved.