public enum Discover extends Enum<Discover>
| Enum Constant and Description |
|---|
all |
annotated |
annotated_by_bean |
none |
| Modifier and Type | Method and Description |
|---|---|
static Discover |
valueOf(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(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 © 2021. All rights reserved.