public enum ArrayOpCode extends Enum<ArrayOpCode>
| Enum Constant and Description |
|---|
BOOLEAN |
BYTE |
CHAR |
DOUBLE |
FLOAT |
INT |
LONG |
NOT_PRIMITIVE |
SHORT |
| Modifier and Type | Method and Description |
|---|---|
static ArrayOpCode |
getArrayOpCode(ParameterizedType type) |
int |
getAtype() |
OpCode |
getLoad() |
OpCode |
getStore() |
Class<?> |
getType() |
static ArrayOpCode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ArrayOpCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ArrayOpCode NOT_PRIMITIVE
public static final ArrayOpCode BYTE
public static final ArrayOpCode BOOLEAN
public static final ArrayOpCode CHAR
public static final ArrayOpCode SHORT
public static final ArrayOpCode INT
public static final ArrayOpCode LONG
public static final ArrayOpCode FLOAT
public static final ArrayOpCode DOUBLE
public static ArrayOpCode[] values()
for (ArrayOpCode c : ArrayOpCode.values()) System.out.println(c);
public static ArrayOpCode valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic OpCode getLoad()
public OpCode getStore()
public int getAtype()
public Class<?> getType()
public static ArrayOpCode getArrayOpCode(ParameterizedType type)
Copyright © 2012–2023. All rights reserved.