org.objectweb.asm.tree

Class LdcInsnNode

public class LdcInsnNode extends AbstractInsnNode

A node that represents an LDC instruction.

Author: Eric Bruneton

Field Summary
Objectcst
The constant to be loaded on the stack.
Constructor Summary
LdcInsnNode(Object cst)
Constructs a new LdcInsnNode.
Method Summary
voidaccept(MethodVisitor mv)
AbstractInsnNodeclone(Map labels)
intgetType()

Field Detail

cst

public Object cst
The constant to be loaded on the stack. This parameter must be a non null Integer, a Float, a Long, a Double, a String or a Type.

Constructor Detail

LdcInsnNode

public LdcInsnNode(Object cst)
Constructs a new LdcInsnNode.

Parameters: cst the constant to be loaded on the stack. This parameter must be a non null Integer, a Float, a Long, a Double or a String.

Method Detail

accept

public void accept(MethodVisitor mv)

clone

public AbstractInsnNode clone(Map labels)

getType

public int getType()