Uses of Class
org.jboss.classfilewriter.code.StackEntry
-
Packages that use StackEntry Package Description org.jboss.classfilewriter.code -
-
Uses of StackEntry in org.jboss.classfilewriter.code
Fields in org.jboss.classfilewriter.code with type parameters of type StackEntry Modifier and Type Field Description private java.util.List<StackEntry>
LocalVariableState. contents
The contents, null is used to represent the additional spot taken up by a wide variable.private java.util.List<StackEntry>
StackState. contents
The contents of the stackMethods in org.jboss.classfilewriter.code that return StackEntry Modifier and Type Method Description StackEntry
LocalVariableState. get(int index)
static StackEntry
StackEntry. of(java.lang.String descriptor, ConstPool pool)
StackEntry
StackState. top()
StackEntry
StackState. top_1()
StackEntry
StackState. top_2()
StackEntry
StackState. top_3()
Methods in org.jboss.classfilewriter.code that return types with arguments of type StackEntry Modifier and Type Method Description java.util.List<StackEntry>
LocalVariableState. getContents()
java.util.List<StackEntry>
StackState. getContents()
Methods in org.jboss.classfilewriter.code with parameters of type StackEntry Modifier and Type Method Description LocalVariableState
LocalVariableState. constructorCall(StackEntry entry)
StackState
StackState. constructorCall(int initializedValueStackPosition, StackEntry entry)
private StackState
StackState. newStack(StackEntry... pushValues)
StackFrame
StackFrame. push(StackEntry entry)
push an operand of the given type onto the stack.StackState
StackState. push(StackEntry entry)
push a type on to the top of the stackLocalVariableState
LocalVariableState. store(int index, StackEntry entry)
LocalVariableState
LocalVariableState. storeWide(int index, StackEntry entry)
Constructor parameters in org.jboss.classfilewriter.code with type arguments of type StackEntry Constructor Description LocalVariableState(java.util.List<StackEntry> contents, ConstPool constPool)
StackState(java.util.List<StackEntry> contents, ConstPool constPool)
-