Package org.jf.dexlib2.immutable.value
Class ImmutableLongEncodedValue
- java.lang.Object
-
- org.jf.dexlib2.base.value.BaseLongEncodedValue
-
- org.jf.dexlib2.immutable.value.ImmutableLongEncodedValue
-
- All Implemented Interfaces:
java.lang.Comparable<EncodedValue>
,EncodedValue
,LongEncodedValue
,ImmutableEncodedValue
- Direct Known Subclasses:
BuilderEncodedValues.BuilderLongEncodedValue
public class ImmutableLongEncodedValue extends BaseLongEncodedValue implements ImmutableEncodedValue
-
-
Field Summary
Fields Modifier and Type Field Description protected long
value
-
Constructor Summary
Constructors Constructor Description ImmutableLongEncodedValue(long value)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description long
getValue()
Gets the long value.static ImmutableLongEncodedValue
of(LongEncodedValue longEncodedValue)
-
Methods inherited from class org.jf.dexlib2.base.value.BaseLongEncodedValue
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 ImmutableLongEncodedValue of(LongEncodedValue longEncodedValue)
-
getValue
public long getValue()
Description copied from interface:LongEncodedValue
Gets the long value.- Specified by:
getValue
in interfaceLongEncodedValue
- Returns:
- the long value
-
-