Uses of Class
de.mirkosertic.bytecoder.core.ir.InvocationType
-
Packages that use InvocationType Package Description de.mirkosertic.bytecoder.core.ir -
-
Uses of InvocationType in de.mirkosertic.bytecoder.core.ir
Fields in de.mirkosertic.bytecoder.core.ir declared as InvocationType Modifier and Type Field Description InvocationType
MethodInvocation. invocationType
InvocationType
MethodInvocationExpression. invocationType
Methods in de.mirkosertic.bytecoder.core.ir that return InvocationType Modifier and Type Method Description InvocationType
AbstractInvocation. invocationType()
InvocationType
MethodInvocation. invocationType()
InvocationType
MethodInvocationExpression. invocationType()
static InvocationType
InvocationType. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static InvocationType[]
InvocationType. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in de.mirkosertic.bytecoder.core.ir with parameters of type InvocationType Modifier and Type Method Description void
AbstractInvocation. changeInvocationTypeTo(InvocationType newInvocationType)
void
MethodInvocation. changeInvocationTypeTo(InvocationType newInvocationType)
void
MethodInvocationExpression. changeInvocationTypeTo(InvocationType newInvocationType)
MethodInvocation
Graph. newMethodInvocation(InvocationType invocationType, org.objectweb.asm.tree.MethodInsnNode insn, ResolvedMethod rm)
MethodInvocationExpression
Graph. newMethodInvocationExpression(InvocationType invocationType, org.objectweb.asm.tree.MethodInsnNode insn, ResolvedMethod rm)
Constructors in de.mirkosertic.bytecoder.core.ir with parameters of type InvocationType Constructor Description MethodInvocation(org.objectweb.asm.tree.MethodInsnNode insnNode, ResolvedMethod method, InvocationType invocationType)
MethodInvocationExpression(org.objectweb.asm.tree.MethodInsnNode insnNode, ResolvedMethod method, InvocationType invocationType)
-