Package net.bytebuddy.dynamic.scaffold
Enum Class TypeValidation
- All Implemented Interfaces:
Serializable
,Comparable<TypeValidation>
,Constable
If type validation is enabled, Byte Buddy performs several checks to ensure that a generated
class file is specified in a valid manner. This involves checks of the generated instrumented
type and checks of the generated byte code. Byte Buddy's Implementation
instances perform their own checks, independently of any type validation.
The JVM's verifier performs its own checks; an illegal class file is never loaded. However, Byte Buddy's checks might be more expressive in the context of using the library. Also, Byte Buddy emits exceptions at class creation time while the JVM emits errors at class loading time.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum Constants -
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final boolean
true
if type validation is enabled. -
Constructor Summary
ConstructorsModifierConstructorDescriptionprivate
TypeValidation
(boolean enabled) Creates a new type validation enumeration. -
Method Summary
Modifier and TypeMethodDescriptionboolean
Returnstrue
if type validation is enabled.static TypeValidation
of
(boolean enabled) ReturnsENABLED
if the supplied argument istrue
.static TypeValidation
Returns the enum constant of this class with the specified name.static TypeValidation[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
ENABLED
Enables Byte Buddy's validation. -
DISABLED
Disables Byte Buddy's validation.
-
-
Field Details
-
enabled
private final boolean enabledtrue
if type validation is enabled.
-
-
Constructor Details
-
TypeValidation
private TypeValidation(boolean enabled) Creates a new type validation enumeration.- Parameters:
enabled
-true
if type validation is enabled.
-
-
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
-
of
ReturnsENABLED
if the supplied argument istrue
.- Parameters:
enabled
-true
if type validation should be enabled.- Returns:
- A suitable type validation representation.
-
isEnabled
public boolean isEnabled()Returnstrue
if type validation is enabled.- Returns:
true
if type validation is enabled.
-