Enum FieldProxy.Binder.StaticFieldConstructor
java.lang.Object
java.lang.Enum<FieldProxy.Binder.StaticFieldConstructor>
net.bytebuddy.implementation.bind.annotation.FieldProxy.Binder.StaticFieldConstructor
- All Implemented Interfaces:
Serializable, Comparable<FieldProxy.Binder.StaticFieldConstructor>, java.lang.constant.Constable, InstrumentedType.Prepareable, Implementation
- Enclosing class:
FieldProxy.Binder
protected static enum FieldProxy.Binder.StaticFieldConstructor
extends Enum<FieldProxy.Binder.StaticFieldConstructor>
implements Implementation
Represents an implementation for implementing a proxy type constructor when a static field is accessed.
-
Nested Class Summary
Nested classes/interfaces inherited from class Enum
Enum.EnumDesc<E>Nested classes/interfaces inherited from interface Implementation
Implementation.Composable, Implementation.Compound, Implementation.Context, Implementation.Simple, Implementation.SpecialMethodInvocation, Implementation.TargetNested classes/interfaces inherited from interface InstrumentedType.Prepareable
InstrumentedType.Prepareable.NoOp -
Enum Constant Summary
Enum Constants -
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final MethodDescriptionA reference of theObjecttype default constructor. -
Constructor Summary
ConstructorsModifierConstructorDescriptionprivateCreates the constructor call singleton. -
Method Summary
Modifier and TypeMethodDescriptionappender(Implementation.Target implementationTarget) Creates a byte code appender that determines the implementation of the instrumented type's methods.prepare(InstrumentedType instrumentedType) Prepares a given instrumented type.Returns the enum constant of this type with the specified name.values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
INSTANCE
The singleton instance.
-
-
Field Details
-
objectTypeDefaultConstructor
A reference of theObjecttype default constructor.
-
-
Constructor Details
-
StaticFieldConstructor
private StaticFieldConstructor()Creates the constructor call singleton.
-
-
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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
prepare
Prepares a given instrumented type.- Specified by:
preparein interfaceInstrumentedType.Prepareable- Parameters:
instrumentedType- The instrumented type in its current form.- Returns:
- The prepared instrumented type.
-
appender
Creates a byte code appender that determines the implementation of the instrumented type's methods.- Specified by:
appenderin interfaceImplementation- Parameters:
implementationTarget- The target of the current implementation.- Returns:
- A byte code appender for implementing methods delegated to this implementation. This byte code appender
is also responsible for handling methods that were added by this implementation on the call to
InstrumentedType.Prepareable.prepare(InstrumentedType).
-