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 double
value
-
Constructor Summary
Constructors Constructor Description ImmutableDoubleEncodedValue(double value)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description double
getValue()
Gets the double value.static ImmutableDoubleEncodedValue
of(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:DoubleEncodedValue
Gets the double value.- Specified by:
getValue
in interfaceDoubleEncodedValue
- Returns:
- the double value
-
-