Package org.jf.dexlib2
Class MethodHandleType
- java.lang.Object
-
- org.jf.dexlib2.MethodHandleType
-
public class MethodHandleType extends java.lang.Object
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classMethodHandleType.InvalidMethodHandleTypeException
-
Field Summary
Fields Modifier and Type Field Description static intINSTANCE_GETstatic intINSTANCE_PUTstatic intINVOKE_CONSTRUCTORstatic intINVOKE_DIRECTstatic intINVOKE_INSTANCEstatic intINVOKE_INTERFACEstatic intINVOKE_STATICstatic intSTATIC_GETstatic intSTATIC_PUT
-
Constructor Summary
Constructors Constructor Description MethodHandleType()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static intgetMethodHandleType(java.lang.String methodHandleType)static java.lang.StringtoString(int methodHandleType)
-
-
-
Field Detail
-
STATIC_PUT
public static final int STATIC_PUT
- See Also:
- Constant Field Values
-
STATIC_GET
public static final int STATIC_GET
- See Also:
- Constant Field Values
-
INSTANCE_PUT
public static final int INSTANCE_PUT
- See Also:
- Constant Field Values
-
INSTANCE_GET
public static final int INSTANCE_GET
- See Also:
- Constant Field Values
-
INVOKE_STATIC
public static final int INVOKE_STATIC
- See Also:
- Constant Field Values
-
INVOKE_INSTANCE
public static final int INVOKE_INSTANCE
- See Also:
- Constant Field Values
-
INVOKE_CONSTRUCTOR
public static final int INVOKE_CONSTRUCTOR
- See Also:
- Constant Field Values
-
INVOKE_DIRECT
public static final int INVOKE_DIRECT
- See Also:
- Constant Field Values
-
INVOKE_INTERFACE
public static final int INVOKE_INTERFACE
- See Also:
- Constant Field Values
-
-