public enum SimpleAnnotation extends Enum<SimpleAnnotation>
Enum Constant and Description |
---|
DEPRECATED |
DISABLED |
EXTENSION_METHOD |
SIDE_EFFECT |
Modifier and Type | Method and Description |
---|---|
static SimpleAnnotation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SimpleAnnotation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SimpleAnnotation SIDE_EFFECT
public static final SimpleAnnotation DEPRECATED
public static final SimpleAnnotation DISABLED
public static final SimpleAnnotation EXTENSION_METHOD
public static SimpleAnnotation[] values()
for (SimpleAnnotation c : SimpleAnnotation.values()) System.out.println(c);
public static SimpleAnnotation 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 © 2007-2020 Whitestein Technologies. All Rights Reserved.