Package org.jf.dexlib2.immutable.value
Class ImmutableMethodEncodedValue
- java.lang.Object
-
- org.jf.dexlib2.base.value.BaseMethodEncodedValue
-
- org.jf.dexlib2.immutable.value.ImmutableMethodEncodedValue
-
- All Implemented Interfaces:
java.lang.Comparable<EncodedValue>
,EncodedValue
,MethodEncodedValue
,ImmutableEncodedValue
public class ImmutableMethodEncodedValue extends BaseMethodEncodedValue implements ImmutableEncodedValue
-
-
Field Summary
Fields Modifier and Type Field Description protected ImmutableMethodReference
value
-
Constructor Summary
Constructors Constructor Description ImmutableMethodEncodedValue(ImmutableMethodReference value)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description ImmutableMethodReference
getValue()
Gets the method value.static ImmutableMethodEncodedValue
of(MethodEncodedValue methodEncodedValue)
-
Methods inherited from class org.jf.dexlib2.base.value.BaseMethodEncodedValue
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
-
-
-
-
Field Detail
-
value
@Nonnull protected final ImmutableMethodReference value
-
-
Constructor Detail
-
ImmutableMethodEncodedValue
public ImmutableMethodEncodedValue(@Nonnull ImmutableMethodReference value)
-
-
Method Detail
-
of
public static ImmutableMethodEncodedValue of(@Nonnull MethodEncodedValue methodEncodedValue)
-
getValue
@Nonnull public ImmutableMethodReference getValue()
Description copied from interface:MethodEncodedValue
Gets the method value.- Specified by:
getValue
in interfaceMethodEncodedValue
- Returns:
- the method value as a MethodReference
-
-