public static enum AnnValue.Type extends Enum<AnnValue.Type>
| Enum Constant and Description |
|---|
ANNOTATION |
ARRAY |
ENUM |
PRIMITIVE |
STRING |
TYPE |
| Modifier and Type | Method and Description |
|---|---|
static AnnValue.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AnnValue.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AnnValue.Type PRIMITIVE
public static final AnnValue.Type STRING
public static final AnnValue.Type ARRAY
public static final AnnValue.Type ANNOTATION
public static final AnnValue.Type ENUM
public static final AnnValue.Type TYPE
public static AnnValue.Type[] values()
for (AnnValue.Type c : AnnValue.Type.values()) System.out.println(c);
public static AnnValue.Type 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 nullCopyright © 2025 vpc open source initiative. All rights reserved.