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