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