com.android.dx.rop.cst
Class CstDouble

java.lang.Object
  extended by com.android.dx.rop.cst.Constant
      extended by com.android.dx.rop.cst.TypedConstant
          extended by com.android.dx.rop.cst.CstLiteralBits
              extended by com.android.dx.rop.cst.CstLiteral64
                  extended by com.android.dx.rop.cst.CstDouble
All Implemented Interfaces:
TypeBearer, ToHuman, Comparable<Constant>

public final class CstDouble
extends CstLiteral64

Constants of type CONSTANT_Double_info.


Field Summary
static CstDouble VALUE_0
          non-null; instance representing 0
static CstDouble VALUE_1
          non-null; instance representing 1
 
Method Summary
 Type getType()
          Gets the type associated with this instance.
 double getValue()
          Gets the double value.
static CstDouble make(long bits)
          Makes an instance for the given value.
 String toHuman()
          Return the "human" string form of this instance.
 String toString()
          
 String 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
 
Methods inherited from class com.android.dx.rop.cst.Constant
compareTo
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 

Field Detail

VALUE_0

public static final CstDouble VALUE_0
non-null; instance representing 0


VALUE_1

public static final CstDouble VALUE_1
non-null; instance representing 1

Method Detail

make

public static CstDouble make(long bits)
Makes an instance for the given value. This may (but does not necessarily) return an already-allocated instance.

Parameters:
bits - the double value as long bits

toString

public String toString()

Overrides:
toString in class Object

getType

public Type getType()
Gets the type associated with this instance.

Returns:
non-null; the type

typeName

public String typeName()
Returns the human name for the particular type of constant this instance is.

Specified by:
typeName in class Constant
Returns:
non-null; the name

toHuman

public String toHuman()
Return the "human" string form of this instance. This is generally less "debuggy" than toString().

Returns:
non-null; the human string form

getValue

public double getValue()
Gets the double value.

Returns:
the value


Copyright © 2015. All rights reserved.