public enum QueryList extends Enum<QueryList>
| Modifier and Type | Method and Description |
|---|---|
String |
query() |
static QueryList |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static QueryList[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QueryList H2
public static final QueryList MYSQL
public static final QueryList POSTGRE
public static final QueryList SQLSERVER
public static QueryList[] values()
for (QueryList c : QueryList.values()) System.out.println(c);
public static QueryList 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 nullpublic String query()
Copyright © 2023. All rights reserved.