public enum CredentialsQueriesSQL extends Enum<CredentialsQueriesSQL> implements NativeSQLQueries
| Enum Constant and Description |
|---|
USER_GET_CREDENTIALS |
| Modifier and Type | Method and Description |
|---|---|
String |
getQuery()
Return SQL query as a plain string
|
static CredentialsQueriesSQL |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CredentialsQueriesSQL[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CredentialsQueriesSQL USER_GET_CREDENTIALS
public static CredentialsQueriesSQL[] values()
for (CredentialsQueriesSQL c : CredentialsQueriesSQL.values()) System.out.println(c);
public static CredentialsQueriesSQL 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 getQuery()
NativeSQLQueriesgetQuery in interface NativeSQLQueries