public static enum BytecodeMeta.CodeInfoFlag extends java.lang.Enum<BytecodeMeta.CodeInfoFlag>
Enum Constant and Description |
---|
INSTANCE_OF_MATCHES |
ITERATED_TYPE_HINTS |
LIVENESS_CLASH |
MALFORMED_SWITCH |
STRING_SWITCHES |
SWITCHES |
USES_EXCEPTIONS |
USES_INVOKEDYNAMIC |
USES_MONITORS |
Modifier and Type | Method and Description |
---|---|
static BytecodeMeta.CodeInfoFlag |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BytecodeMeta.CodeInfoFlag[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BytecodeMeta.CodeInfoFlag USES_MONITORS
public static final BytecodeMeta.CodeInfoFlag USES_EXCEPTIONS
public static final BytecodeMeta.CodeInfoFlag USES_INVOKEDYNAMIC
public static final BytecodeMeta.CodeInfoFlag LIVENESS_CLASH
public static final BytecodeMeta.CodeInfoFlag ITERATED_TYPE_HINTS
public static final BytecodeMeta.CodeInfoFlag SWITCHES
public static final BytecodeMeta.CodeInfoFlag STRING_SWITCHES
public static final BytecodeMeta.CodeInfoFlag INSTANCE_OF_MATCHES
public static final BytecodeMeta.CodeInfoFlag MALFORMED_SWITCH
public static BytecodeMeta.CodeInfoFlag[] values()
for (BytecodeMeta.CodeInfoFlag c : BytecodeMeta.CodeInfoFlag.values()) System.out.println(c);
public static BytecodeMeta.CodeInfoFlag valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null