LdcInsnNodepublic class LdcInsnNode extends AbstractInsnNode A node that represents an LDC instruction. |
Fields Summary |
---|
public Object | cstThe constant to be loaded on the stack. This parameter must be a non null
{@link java.lang.Integer Integer}, a {@link java.lang.Float Float}, a
{@link java.lang.Long Long}, a {@link java.lang.Double Double} a {@link
String String} or a {@link oracle.toplink.libraries.asm.Type Type}. |
Constructors Summary |
---|
public LdcInsnNode(Object cst)Constructs a new {@link LdcInsnNode LdcInsnNode} object.
super(Constants.LDC);
this.cst = cst;
|
|