Package net.bytebuddy.dynamic.scaffold
Enum Class InstrumentedType.Prepareable.NoOp
java.lang.Object
java.lang.Enum<InstrumentedType.Prepareable.NoOp>
net.bytebuddy.dynamic.scaffold.InstrumentedType.Prepareable.NoOp
- All Implemented Interfaces:
Serializable
,Comparable<InstrumentedType.Prepareable.NoOp>
,Constable
,InstrumentedType.Prepareable
- Enclosing interface:
- InstrumentedType.Prepareable
public static enum InstrumentedType.Prepareable.NoOp
extends Enum<InstrumentedType.Prepareable.NoOp>
implements InstrumentedType.Prepareable
A prepareable that does not alter the instrumented type.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
Nested classes/interfaces inherited from interface net.bytebuddy.dynamic.scaffold.InstrumentedType.Prepareable
InstrumentedType.Prepareable.NoOp
-
Enum Constant Summary
Enum Constants -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.Returns the enum constant of this class with the specified name.static InstrumentedType.Prepareable.NoOp[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
INSTANCE
The singleton instance.
-
-
Constructor Details
-
NoOp
private NoOp()
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-
prepare
Prepares a given instrumented type.- Specified by:
prepare
in interfaceInstrumentedType.Prepareable
- Parameters:
instrumentedType
- The instrumented type in its current form.- Returns:
- The prepared instrumented type.
-