Package org.jf.dexlib2
Class VerificationError
- java.lang.Object
-
- org.jf.dexlib2.VerificationError
-
public class VerificationError extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description static int
CLASS_CHANGE_ERROR
static int
GENERIC
static int
ILLEGAL_CLASS_ACCESS
static int
ILLEGAL_FIELD_ACCESS
static int
ILLEGAL_METHOD_ACCESS
static int
INSTANTIATION_ERROR
static int
NO_SUCH_CLASS
static int
NO_SUCH_FIELD
static int
NO_SUCH_METHOD
-
Constructor Summary
Constructors Constructor Description VerificationError()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static int
getVerificationError(java.lang.String verificationError)
static java.lang.String
getVerificationErrorName(int verificationError)
static boolean
isValidVerificationError(int verificationError)
-
-
-
Field Detail
-
GENERIC
public static final int GENERIC
- See Also:
- Constant Field Values
-
NO_SUCH_CLASS
public static final int NO_SUCH_CLASS
- See Also:
- Constant Field Values
-
NO_SUCH_FIELD
public static final int NO_SUCH_FIELD
- See Also:
- Constant Field Values
-
NO_SUCH_METHOD
public static final int NO_SUCH_METHOD
- See Also:
- Constant Field Values
-
ILLEGAL_CLASS_ACCESS
public static final int ILLEGAL_CLASS_ACCESS
- See Also:
- Constant Field Values
-
ILLEGAL_FIELD_ACCESS
public static final int ILLEGAL_FIELD_ACCESS
- See Also:
- Constant Field Values
-
ILLEGAL_METHOD_ACCESS
public static final int ILLEGAL_METHOD_ACCESS
- See Also:
- Constant Field Values
-
CLASS_CHANGE_ERROR
public static final int CLASS_CHANGE_ERROR
- See Also:
- Constant Field Values
-
INSTANTIATION_ERROR
public static final int INSTANTIATION_ERROR
- See Also:
- Constant Field Values
-
-
Method Detail
-
getVerificationErrorName
@Nullable public static java.lang.String getVerificationErrorName(int verificationError)
-
getVerificationError
public static int getVerificationError(java.lang.String verificationError)
-
isValidVerificationError
public static boolean isValidVerificationError(int verificationError)
-
-