public enum SqlSelectListType extends Enum<SqlSelectListType>
| Enum Constant and Description |
|---|
ANY_VALUE
We just need one arbitrary value for each row.
|
REGULAR
The user has to specify the desired elements.
|
SELECT_STAR
The user requests all available columns, i.e.
|
| Modifier and Type | Method and Description |
|---|---|
static SqlSelectListType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SqlSelectListType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SqlSelectListType SELECT_STAR
public static final SqlSelectListType ANY_VALUE
public static final SqlSelectListType REGULAR
public static SqlSelectListType[] values()
for (SqlSelectListType c : SqlSelectListType.values()) System.out.println(c);
public static SqlSelectListType 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 © 2019. All rights reserved.