Top Description Constructors Methods
com.sun.org.apache.bcel.internal.generic

public Class IFEQ

extends IfInstruction
Class Inheritance

IFEQ - Branch if int comparison with zero succeeds
Stack: ..., value -> ...

Constructor Summary

AccessConstructor and Description
pack-priv
IFEQ()

Empty constructor needed for Instruction.readInstruction.

public
IFEQ(final InstructionHandle target)

Method Summary

Modifier and TypeMethod and Description
public void
accept(final Visitor
Visitor object
v
)

Implements abstract com.sun.org.apache.bcel.internal.generic.Instruction.accept.

Call corresponding visitor method(s).
public IfInstruction

Returns:

negation of instruction, e.g. IFEQ.negate() == IFNE
negate
()

Implements abstract com.sun.org.apache.bcel.internal.generic.IfInstruction.negate.

Constructor Detail

IFEQback to summary
pack-priv IFEQ()

Empty constructor needed for Instruction.readInstruction. Not to be used otherwise.

IFEQback to summary
public IFEQ(final InstructionHandle target)

Method Detail

acceptback to summary
public void accept(final Visitor v)

Implements abstract com.sun.org.apache.bcel.internal.generic.Instruction.accept.

Call corresponding visitor method(s). The order is: Call visitor methods of implemented interfaces first, then call methods according to the class hierarchy in descending order, i.e., the most specific visitXXX() call comes last.

Parameters
v:Visitor

Visitor object

Annotations
@Override
negateback to summary
public IfInstruction negate()

Implements abstract com.sun.org.apache.bcel.internal.generic.IfInstruction.negate.

Returns:IfInstruction

negation of instruction, e.g. IFEQ.negate() == IFNE

Annotations
@Override