Package proguard.dexfile.ir
Enum TypeClass
- java.lang.Object
-
- java.lang.Enum<TypeClass>
-
- proguard.dexfile.ir.TypeClass
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static TypeClass
clzOf(java.lang.String desc)
static TypeClass
merge(TypeClass thizCls, TypeClass clz)
java.lang.String
toString()
static TypeClass
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static TypeClass[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BOOLEAN
public static final TypeClass BOOLEAN
-
INT
public static final TypeClass INT
-
FLOAT
public static final TypeClass FLOAT
-
DOUBLE
public static final TypeClass DOUBLE
-
LONG
public static final TypeClass LONG
-
OBJECT
public static final TypeClass OBJECT
-
VOID
public static final TypeClass VOID
-
UNKNOWN
public static final TypeClass UNKNOWN
-
ZIL
public static final TypeClass ZIL
-
ZIFL
public static final TypeClass ZIFL
-
ZIF
public static final TypeClass ZIF
-
ZI
public static final TypeClass ZI
-
IF
public static final TypeClass IF
-
JD
public static final TypeClass JD
-
-
Method Detail
-
values
public static TypeClass[] 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 (TypeClass c : TypeClass.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TypeClass 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
-
clzOf
public static TypeClass clzOf(java.lang.String desc)
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Enum<TypeClass>
-
-