Uses of Interface
net.bytebuddy.implementation.bytecode.constant.MethodConstant.CanCache
-
Packages that use MethodConstant.CanCache Package Description net.bytebuddy.implementation.bytecode.constant StackManipulation
s in this package are responsible for creating compile-time constants and pushing them onto the operand stack. -
-
Uses of MethodConstant.CanCache in net.bytebuddy.implementation.bytecode.constant
Classes in net.bytebuddy.implementation.bytecode.constant that implement MethodConstant.CanCache Modifier and Type Class Description protected static class
MethodConstant.CanCacheIllegal
Represents a method constant that cannot be represented by Java's reflection API.protected static class
MethodConstant.ForConstructor
Creates aMethodConstant
for loading aConstructor
instance onto the operand stack.protected static class
MethodConstant.ForMethod
Creates aMethodConstant
for loading aMethod
instance onto the operand stack.protected static class
MethodConstant.PrivilegedLookup
Performs a privileged lookup of a method constant by using anAccessController
.Methods in net.bytebuddy.implementation.bytecode.constant that return MethodConstant.CanCache Modifier and Type Method Description static MethodConstant.CanCache
MethodConstant. of(MethodDescription.InDefinedShape methodDescription)
Creates a stack manipulation that loads a method constant onto the operand stack.static MethodConstant.CanCache
MethodConstant. ofPrivileged(MethodDescription.InDefinedShape methodDescription)
Creates a stack manipulation that loads a method constant onto the operand stack using anAccessController
.protected MethodConstant.CanCache
MethodConstant. privileged()
Returns a method constant that uses anAccessController
to look up this constant.
-