public enum PrimitiveBoxingDelegate extends Enum<PrimitiveBoxingDelegate>
Enum Constant and Description |
---|
BOOLEAN
The boxing delegate for
boolean values. |
BYTE
The boxing delegate for
byte values. |
CHARACTER
The boxing delegate for
char values. |
DOUBLE
The boxing delegate for
double values. |
FLOAT
The boxing delegate for
float values. |
INTEGER
The boxing delegate for
int values. |
LONG
The boxing delegate for
long values. |
SHORT
The boxing delegate for
short values. |
Modifier and Type | Method and Description |
---|---|
StackManipulation |
assignBoxedTo(TypeDescription.Generic target,
Assigner chainedAssigner,
Assigner.Typing typing)
Creates a stack manipulation that boxes the represented primitive type and applies a chained assignment
to the result of this boxing operation.
|
static PrimitiveBoxingDelegate |
forPrimitive(TypeDefinition typeDefinition)
Locates a boxing delegate for a given primitive type.
|
static PrimitiveBoxingDelegate |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PrimitiveBoxingDelegate[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PrimitiveBoxingDelegate BOOLEAN
boolean
values.public static final PrimitiveBoxingDelegate BYTE
byte
values.public static final PrimitiveBoxingDelegate SHORT
short
values.public static final PrimitiveBoxingDelegate CHARACTER
char
values.public static final PrimitiveBoxingDelegate INTEGER
int
values.public static final PrimitiveBoxingDelegate LONG
long
values.public static final PrimitiveBoxingDelegate FLOAT
float
values.public static final PrimitiveBoxingDelegate DOUBLE
double
values.public static PrimitiveBoxingDelegate[] values()
for (PrimitiveBoxingDelegate c : PrimitiveBoxingDelegate.values()) System.out.println(c);
public static PrimitiveBoxingDelegate 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 static PrimitiveBoxingDelegate forPrimitive(TypeDefinition typeDefinition)
typeDefinition
- A non-void primitive type.public StackManipulation assignBoxedTo(TypeDescription.Generic target, Assigner chainedAssigner, Assigner.Typing typing)
target
- The type that is target of the assignment operation.chainedAssigner
- The assigner that is to be used to perform the chained assignment.typing
- Determines if an assignment to an incompatible type should be enforced by a casting.Copyright © 2014–2019. All rights reserved.