public enum ResultSetType extends Enum<ResultSetType>
Enum Constant and Description |
---|
alias |
array |
case_when |
cte |
cursor |
function |
insert_select |
merge_insert |
merge_update |
output |
pivot_table |
result_of |
select_list |
struct |
unpivot_table |
update_select |
update_set |
variable |
Modifier and Type | Method and Description |
---|---|
static ResultSetType |
of(String type) |
static ResultSetType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ResultSetType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ResultSetType select_list
public static final ResultSetType array
public static final ResultSetType struct
public static final ResultSetType result_of
public static final ResultSetType cte
public static final ResultSetType insert_select
public static final ResultSetType update_select
public static final ResultSetType merge_update
public static final ResultSetType merge_insert
public static final ResultSetType output
public static final ResultSetType update_set
public static final ResultSetType pivot_table
public static final ResultSetType unpivot_table
public static final ResultSetType alias
public static final ResultSetType function
public static final ResultSetType case_when
public static final ResultSetType cursor
public static final ResultSetType variable
public static ResultSetType[] values()
for (ResultSetType c : ResultSetType.values()) System.out.println(c);
public static ResultSetType 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 static ResultSetType of(String type)