Enum EncodedType
- java.lang.Object
-
- java.lang.Enum<EncodedType>
-
- jadx.api.plugins.input.data.annotations.EncodedType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<EncodedType>
public enum EncodedType extends java.lang.Enum<EncodedType>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static EncodedTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static EncodedType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ENCODED_NULL
public static final EncodedType ENCODED_NULL
-
ENCODED_BOOLEAN
public static final EncodedType ENCODED_BOOLEAN
-
ENCODED_BYTE
public static final EncodedType ENCODED_BYTE
-
ENCODED_SHORT
public static final EncodedType ENCODED_SHORT
-
ENCODED_CHAR
public static final EncodedType ENCODED_CHAR
-
ENCODED_INT
public static final EncodedType ENCODED_INT
-
ENCODED_LONG
public static final EncodedType ENCODED_LONG
-
ENCODED_FLOAT
public static final EncodedType ENCODED_FLOAT
-
ENCODED_DOUBLE
public static final EncodedType ENCODED_DOUBLE
-
ENCODED_STRING
public static final EncodedType ENCODED_STRING
-
ENCODED_TYPE
public static final EncodedType ENCODED_TYPE
-
ENCODED_ENUM
public static final EncodedType ENCODED_ENUM
-
ENCODED_FIELD
public static final EncodedType ENCODED_FIELD
-
ENCODED_METHOD
public static final EncodedType ENCODED_METHOD
-
ENCODED_METHOD_TYPE
public static final EncodedType ENCODED_METHOD_TYPE
-
ENCODED_METHOD_HANDLE
public static final EncodedType ENCODED_METHOD_HANDLE
-
ENCODED_ARRAY
public static final EncodedType ENCODED_ARRAY
-
ENCODED_ANNOTATION
public static final EncodedType ENCODED_ANNOTATION
-
-
Method Detail
-
values
public static EncodedType[] 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 (EncodedType c : EncodedType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EncodedType 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
-
-