public static enum TypeInitializer.None extends Enum<TypeInitializer.None> implements TypeInitializer
TypeInitializer.Drain, TypeInitializer.None, TypeInitializer.Simple
ByteCodeAppender.Compound, ByteCodeAppender.Size
Enum Constant and Description |
---|
INSTANCE
The singleton instance.
|
Modifier and Type | Method and Description |
---|---|
ByteCodeAppender.Size |
apply(MethodVisitor methodVisitor,
Implementation.Context implementationContext,
MethodDescription instrumentedMethod)
Applies this byte code appender to a type creation process.
|
TypeInitializer |
expandWith(ByteCodeAppender byteCodeAppenderFactory)
Expands this type initializer with another byte code appender.
|
boolean |
isDefined()
Indicates if this type initializer is defined.
|
static TypeInitializer.None |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TypeInitializer.None[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
TypeWriter.MethodPool.Record |
wrap(TypeWriter.MethodPool.Record record)
Creates a method pool record that applies this type initializer while preserving the record that was supplied.
|
public static final TypeInitializer.None INSTANCE
public static TypeInitializer.None[] values()
for (TypeInitializer.None c : TypeInitializer.None.values()) System.out.println(c);
public static TypeInitializer.None 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 boolean isDefined()
isDefined
in interface TypeInitializer
true
if this type initializer is defined.public TypeInitializer expandWith(ByteCodeAppender byteCodeAppenderFactory)
expandWith
in interface TypeInitializer
byteCodeAppenderFactory
- The byte code appender to apply as the type initializer.public TypeWriter.MethodPool.Record wrap(TypeWriter.MethodPool.Record record)
wrap
in interface TypeInitializer
record
- The record to wrap.public ByteCodeAppender.Size apply(MethodVisitor methodVisitor, Implementation.Context implementationContext, MethodDescription instrumentedMethod)
apply
in interface ByteCodeAppender
methodVisitor
- The method visitor to which the byte code appender writes its code to.implementationContext
- The implementation context of the current type creation process.instrumentedMethod
- The method that is the target of the instrumentation.Copyright © 2014–2020. All rights reserved.