Package org.jf.dexlib2.immutable.value
Class ImmutableDoubleEncodedValue
- java.lang.Object
-
- org.jf.dexlib2.base.value.BaseDoubleEncodedValue
-
- org.jf.dexlib2.immutable.value.ImmutableDoubleEncodedValue
-
- All Implemented Interfaces:
java.lang.Comparable<EncodedValue>,DoubleEncodedValue,EncodedValue,ImmutableEncodedValue
- Direct Known Subclasses:
BuilderEncodedValues.BuilderDoubleEncodedValue
public class ImmutableDoubleEncodedValue extends BaseDoubleEncodedValue implements ImmutableEncodedValue
-
-
Field Summary
Fields Modifier and Type Field Description protected doublevalue
-
Constructor Summary
Constructors Constructor Description ImmutableDoubleEncodedValue(double value)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description doublegetValue()Gets the double value.static ImmutableDoubleEncodedValueof(DoubleEncodedValue doubleEncodedValue)-
Methods inherited from class org.jf.dexlib2.base.value.BaseDoubleEncodedValue
compareTo, equals, getValueType, hashCode, toString
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.jf.dexlib2.iface.value.EncodedValue
getValueType
-
-
-
-
Method Detail
-
of
public static ImmutableDoubleEncodedValue of(DoubleEncodedValue doubleEncodedValue)
-
getValue
public double getValue()
Description copied from interface:DoubleEncodedValueGets the double value.- Specified by:
getValuein interfaceDoubleEncodedValue- Returns:
- the double value
-
-