Enum Constant and Description |
---|
all |
annotated |
annotated_by_bean |
none |
Modifier and Type | Method and Description |
---|---|
(package private) static void |
parse(java.lang.String s,
java.util.EnumSet<Discover> options,
CDIAnnotations state) |
static Discover |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Discover[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Discover all
public static final Discover annotated
public static final Discover annotated_by_bean
public static final Discover none
public static Discover[] values()
for (Discover c : Discover.values()) System.out.println(c);
public static Discover 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 nullstatic void parse(java.lang.String s, java.util.EnumSet<Discover> options, CDIAnnotations state)