public enum TypeAnnotationEntryKind extends java.lang.Enum<TypeAnnotationEntryKind>
| Enum Constant and Description |
|---|
catch_target |
empty_target |
localvar_target |
method_formal_parameter_target |
offset_target |
supertype_target |
throws_target |
type_argument_target |
type_parameter_bound_target |
type_parameter_target |
| Modifier and Type | Method and Description |
|---|---|
static TypeAnnotationEntryKind |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TypeAnnotationEntryKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TypeAnnotationEntryKind type_parameter_target
public static final TypeAnnotationEntryKind supertype_target
public static final TypeAnnotationEntryKind type_parameter_bound_target
public static final TypeAnnotationEntryKind empty_target
public static final TypeAnnotationEntryKind method_formal_parameter_target
public static final TypeAnnotationEntryKind throws_target
public static final TypeAnnotationEntryKind localvar_target
public static final TypeAnnotationEntryKind catch_target
public static final TypeAnnotationEntryKind offset_target
public static final TypeAnnotationEntryKind type_argument_target
public static TypeAnnotationEntryKind[] values()
for (TypeAnnotationEntryKind c : TypeAnnotationEntryKind.values()) System.out.println(c);
public static TypeAnnotationEntryKind 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