Package com.android.dx.rop.cst
Class CstLong
- All Implemented Interfaces:
TypeBearer
,ToHuman
,Comparable<Constant>
Constants of type
CONSTANT_Long_info
.-
Field Summary
-
Method Summary
Modifier and TypeMethodDescriptiongetType()
Gets the type associated with this instance.long
getValue()
Gets thelong
value.static CstLong
make
(long value) Makes an instance for the given value.toHuman()
Return the "human" string form of this instance.toString()
typeName()
Returns the human name for the particular type of constant this instance is.Methods inherited from class com.android.dx.rop.cst.CstLiteral64
compareTo0, equals, fitsInInt, getIntBits, getLongBits, hashCode, isCategory2
Methods inherited from class com.android.dx.rop.cst.CstLiteralBits
fitsIn16Bits, fitsIn8Bits
Methods inherited from class com.android.dx.rop.cst.TypedConstant
getBasicFrameType, getBasicType, getFrameType, isConstant
-
Field Details
-
VALUE_0
non-null;
instance representing0
-
VALUE_1
non-null;
instance representing1
-
-
Method Details
-
make
Makes an instance for the given value. This may (but does not necessarily) return an already-allocated instance.- Parameters:
value
- thelong
value
-
toString
-
getType
Gets the type associated with this instance.- Returns:
non-null;
the type
-
typeName
Returns the human name for the particular type of constant this instance is. -
toHuman
Return the "human" string form of this instance. This is generally less "debuggy" thantoString()
.- Returns:
non-null;
the human string form
-
getValue
public long getValue()Gets thelong
value.- Returns:
- the value
-