Uses of Class
org.jboss.classfilewriter.code.BranchEnd
-
Packages that use BranchEnd Package Description org.jboss.classfilewriter.code -
-
Uses of BranchEnd in org.jboss.classfilewriter.code
Fields in org.jboss.classfilewriter.code with type parameters of type BranchEnd Modifier and Type Field Description private java.util.concurrent.atomic.AtomicReference<BranchEnd>
LookupSwitchBuilder.ValuePair. branchEnd
private java.util.concurrent.atomic.AtomicReference<BranchEnd>
TableSwitchBuilder.ValuePair. branchEnd
private java.util.concurrent.atomic.AtomicReference<BranchEnd>
LookupSwitchBuilder. defaultBranchEnd
private java.util.concurrent.atomic.AtomicReference<BranchEnd>
TableSwitchBuilder. defaultBranchEnd
Methods in org.jboss.classfilewriter.code that return BranchEnd Modifier and Type Method Description private BranchEnd
CodeAttribute. addIf(int opcode, java.lang.String name)
private BranchEnd
CodeAttribute. addIfIcmp(int opcode, java.lang.String name)
private BranchEnd
CodeAttribute. addNullComparison(int opcode, java.lang.String name)
BranchEnd
CodeAttribute. gotoInstruction()
writes a goto instruction.BranchEnd
CodeAttribute. ifAcmpeq()
BranchEnd
CodeAttribute. ifAcmpne()
BranchEnd
CodeAttribute. ifeq()
BranchEnd
CodeAttribute. ifge()
BranchEnd
CodeAttribute. ifgt()
BranchEnd
CodeAttribute. ifIcmpeq()
BranchEnd
CodeAttribute. ifIcmpge()
BranchEnd
CodeAttribute. ifIcmpgt()
BranchEnd
CodeAttribute. ifIcmple()
BranchEnd
CodeAttribute. ifIcmplt()
BranchEnd
CodeAttribute. ifIcmpne()
BranchEnd
CodeAttribute. ifle()
BranchEnd
CodeAttribute. iflt()
BranchEnd
CodeAttribute. ifne()
BranchEnd
CodeAttribute. ifnotnull()
BranchEnd
CodeAttribute. ifnull()
Jump to the given location if the reference type on the top of the stack is null.Methods in org.jboss.classfilewriter.code that return types with arguments of type BranchEnd Modifier and Type Method Description java.util.concurrent.atomic.AtomicReference<BranchEnd>
LookupSwitchBuilder. add(int value)
Adds a value to the table that is at a location yet to be written.java.util.concurrent.atomic.AtomicReference<BranchEnd>
TableSwitchBuilder. add()
Adds a value to the table that is at a location yet to be written.java.util.concurrent.atomic.AtomicReference<BranchEnd>
LookupSwitchBuilder.ValuePair. getBranchEnd()
java.util.concurrent.atomic.AtomicReference<BranchEnd>
TableSwitchBuilder.ValuePair. getBranchEnd()
java.util.concurrent.atomic.AtomicReference<BranchEnd>
LookupSwitchBuilder. getDefaultBranchEnd()
java.util.concurrent.atomic.AtomicReference<BranchEnd>
TableSwitchBuilder. getDefaultBranchEnd()
Methods in org.jboss.classfilewriter.code with parameters of type BranchEnd Modifier and Type Method Description void
CodeAttribute. branchEnd(BranchEnd end)
marks the end of a branch.Constructor parameters in org.jboss.classfilewriter.code with type arguments of type BranchEnd Constructor Description ValuePair(int value, java.util.concurrent.atomic.AtomicReference<BranchEnd> branchEnd)
ValuePair(java.util.concurrent.atomic.AtomicReference<BranchEnd> branchEnd)
-