Package jadx.gui.device.debugger
Enum RuntimeType
- java.lang.Object
-
- java.lang.Enum<RuntimeType>
-
- jadx.gui.device.debugger.RuntimeType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<RuntimeType>
public enum RuntimeType extends java.lang.Enum<RuntimeType>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static RuntimeTypefromJdwpTag(int tag)Converts aJDWP.Tagto aRuntimeTypejava.lang.StringgetDesc()intgetTag()static RuntimeTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static RuntimeType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ARRAY
public static final RuntimeType ARRAY
-
BYTE
public static final RuntimeType BYTE
-
CHAR
public static final RuntimeType CHAR
-
OBJECT
public static final RuntimeType OBJECT
-
FLOAT
public static final RuntimeType FLOAT
-
DOUBLE
public static final RuntimeType DOUBLE
-
INT
public static final RuntimeType INT
-
LONG
public static final RuntimeType LONG
-
SHORT
public static final RuntimeType SHORT
-
VOID
public static final RuntimeType VOID
-
BOOLEAN
public static final RuntimeType BOOLEAN
-
STRING
public static final RuntimeType STRING
-
THREAD
public static final RuntimeType THREAD
-
THREAD_GROUP
public static final RuntimeType THREAD_GROUP
-
CLASS_LOADER
public static final RuntimeType CLASS_LOADER
-
CLASS_OBJECT
public static final RuntimeType CLASS_OBJECT
-
-
Method Detail
-
values
public static RuntimeType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (RuntimeType c : RuntimeType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RuntimeType valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
getTag
public int getTag()
-
getDesc
public java.lang.String getDesc()
-
fromJdwpTag
public static RuntimeType fromJdwpTag(int tag) throws SmaliDebuggerException
Converts aJDWP.Tagto aRuntimeType- Parameters:
tag-- Returns:
- Throws:
SmaliDebuggerException
-
-