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