net.bytebuddy.instrumentation.method.bytecode.stack.assign.Assigner Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of byte-buddy Show documentation
Show all versions of byte-buddy Show documentation
Byte Buddy is a Java library for creating Java classes at run time.
This artifact is a build of Byte Buddy with all ASM dependencies repackaged into its own name space.
package net.bytebuddy.instrumentation.method.bytecode.stack.assign;
import net.bytebuddy.instrumentation.method.bytecode.stack.StackManipulation;
import net.bytebuddy.instrumentation.type.TypeDescription;
/**
* An assigner is responsible for converting some type {@code A} to another type {@code B} if possible.
*
* An assigner is for example responsible for type casting, auto boxing or unboxing or for the widening of primitive
* types.
*/
public interface Assigner {
/**
* @param sourceType The original type that is to be transformed into the {@code targetType}.
* @param targetType The target type into which the {@code sourceType} is to be converted.
* @param dynamicallyTyped A hint whether the assignment should consider the runtime type of the source type,
* i.e. if type down or cross castings are allowed. If this hint is set, this is
* also an indication that {@code void} to non-{@code void} assignments are permitted.
* @return A stack manipulation that transforms the {@code sourceType} into the {@code targetType} if this
* is possible. An illegal stack manipulation otherwise.
*/
StackManipulation assign(TypeDescription sourceType, TypeDescription targetType, boolean dynamicallyTyped);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy