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

public Class IFNULL

extends IfInstruction
Class Inheritance

IFNULL - Branch if reference is not null
Stack: ..., reference -> ...

Constructor Summary

AccessConstructor and Description
pack-priv
IFNULL()

Empty constructor needed for Instruction.readInstruction.

public
IFNULL(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
negate
()

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

Constructor Detail

IFNULLback to summary
pack-priv IFNULL()

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

IFNULLback to summary
public IFNULL(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

Annotations
@Override