@HashCodeAndEqualsPlugin.Enhance protected static class ByteBuddy.EnumerationImplementation extends java.lang.Object implements Implementation
values
method of an enumeration type.Modifier and Type | Class and Description |
---|---|
protected static class |
ByteBuddy.EnumerationImplementation.InitializationAppender
A byte code appender for the type initializer of any enumeration type.
|
protected static class |
ByteBuddy.EnumerationImplementation.ValuesMethodAppender
A byte code appender for the
values method of any enumeration type. |
Implementation.Composable, Implementation.Compound, Implementation.Context, Implementation.Simple, Implementation.SpecialMethodInvocation, Implementation.Target
Modifier and Type | Field and Description |
---|---|
protected static java.lang.String |
CLONE_METHOD_NAME
The name of the
Object.clone() method. |
private static int |
ENUM_FIELD_MODIFIERS
The field modifiers to use for any field that is added to an enumeration.
|
protected static java.lang.String |
ENUM_VALUE_OF_METHOD_NAME
The name of the
valueOf method that is defined for any enumeration. |
private static java.lang.String |
ENUM_VALUES
The name of the field containing an array of all enumeration values.
|
protected static java.lang.String |
ENUM_VALUES_METHOD_NAME
The name of the
values method that is defined for any enumeration. |
private java.util.List<java.lang.String> |
values
The names of the enumerations to define for the enumeration.
|
Modifier | Constructor and Description |
---|---|
protected |
EnumerationImplementation(java.util.List<java.lang.String> values)
Creates a new implementation of an enumeration type.
|
Modifier and Type | Method and Description |
---|---|
ByteCodeAppender |
appender(Implementation.Target implementationTarget)
Creates a byte code appender that determines the implementation of the instrumented type's methods.
|
InstrumentedType |
prepare(InstrumentedType instrumentedType)
Prepares a given instrumented type.
|
protected static final java.lang.String CLONE_METHOD_NAME
Object.clone()
method.protected static final java.lang.String ENUM_VALUE_OF_METHOD_NAME
valueOf
method that is defined for any enumeration.protected static final java.lang.String ENUM_VALUES_METHOD_NAME
values
method that is defined for any enumeration.private static final int ENUM_FIELD_MODIFIERS
private static final java.lang.String ENUM_VALUES
private final java.util.List<java.lang.String> values
protected EnumerationImplementation(java.util.List<java.lang.String> values)
values
- The values of the enumeration.public InstrumentedType prepare(InstrumentedType instrumentedType)
prepare
in interface InstrumentedType.Prepareable
instrumentedType
- The instrumented type in its current form.public ByteCodeAppender appender(Implementation.Target implementationTarget)
appender
in interface Implementation
implementationTarget
- The target of the current implementation.InstrumentedType.Prepareable.prepare(InstrumentedType)
.