CstInsnpublic abstract class CstInsn extends Insn Instruction which contains an explicit reference to a constant. |
Fields Summary |
---|
private final com.android.dx.rop.cst.Constant | cstnon-null; the constant |
Methods Summary |
---|
public boolean | contentEquals(Insn b){@inheritDoc}
/*
* The cast (CstInsn)b below should always succeed since
* Insn.contentEquals compares classes of this and b.
*/
return super.contentEquals(b)
&& cst.equals(((CstInsn)b).getConstant());
| public com.android.dx.rop.cst.Constant | getConstant()Gets the constant.
return cst;
| public java.lang.String | getInlineString(){@inheritDoc}
return cst.toHuman();
|
|