public enum TypePathKind extends Enum<TypePathKind>
Enum Constant and Description |
---|
DEEPER_IN_ARRAY_TYPE |
DEEPER_IN_NESTED_TYPE |
TYPE_ARGUMENT |
WILDCARD_BOUND |
Modifier and Type | Method and Description |
---|---|
static TypePathKind |
getFromTag(int tag) |
int |
getTag() |
static TypePathKind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TypePathKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TypePathKind DEEPER_IN_ARRAY_TYPE
public static final TypePathKind DEEPER_IN_NESTED_TYPE
public static final TypePathKind WILDCARD_BOUND
public static final TypePathKind TYPE_ARGUMENT
public static TypePathKind[] values()
for (TypePathKind c : TypePathKind.values()) System.out.println(c);
public static TypePathKind 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 static TypePathKind getFromTag(int tag) throws InvalidByteCodeException
InvalidByteCodeException
public int getTag()