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. contentsThe contents, null is used to represent the additional spot taken up by a wide variable.private java.util.List<StackEntry>StackState. contentsThe contents of the stackMethods in org.jboss.classfilewriter.code that return StackEntry Modifier and Type Method Description StackEntryLocalVariableState. get(int index)static StackEntryStackEntry. of(java.lang.String descriptor, ConstPool pool)StackEntryStackState. top()StackEntryStackState. top_1()StackEntryStackState. top_2()StackEntryStackState. 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 LocalVariableStateLocalVariableState. constructorCall(StackEntry entry)StackStateStackState. constructorCall(int initializedValueStackPosition, StackEntry entry)StackFrameStackFrame. mergeLocals(int pos, StackEntry frame)StackFrameStackFrame. mergeStack(int pos, StackEntry frame)private StackStateStackState. newStack(StackEntry... pushValues)StackFrameStackFrame. push(StackEntry entry)push an operand of the given type onto the stack.StackStateStackState. push(StackEntry entry)push a type on to the top of the stackLocalVariableStateLocalVariableState. store(int index, StackEntry entry)LocalVariableStateLocalVariableState. storeWide(int index, StackEntry entry)LocalVariableStateLocalVariableState. updateMerged(int pos, StackEntry frame)StackStateStackState. updateMerged(int pos, StackEntry frame)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)
-