org.objectweb.asm.tree
Class LdcInsnNode
A node that represents an LDC instruction.
- Eric Bruneton
Object | cst - The constant to be loaded on the stack.
|
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
.
LdcInsnNode
public LdcInsnNode(Object cst)
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
.
accept
public void accept(CodeVisitor cv)
Makes the given code visitor visit this instruction.
- accept in interface AbstractInsnNode
cv
- a code visitor.