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