public static enum OtherAnno.Local extends Enum<OtherAnno.Local>
Modifier and Type | Method and Description |
---|---|
static OtherAnno.Local |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OtherAnno.Local[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OtherAnno.Local A
public static final OtherAnno.Local B
public static final OtherAnno.Local C
public static OtherAnno.Local[] values()
for (OtherAnno.Local c : OtherAnno.Local.values()) System.out.println(c);
public static OtherAnno.Local 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 © 2024. All rights reserved.