public enum EffectType extends Enum<EffectType>
Enum Constant and Description |
---|
append_from |
clone_database |
clone_schema |
clone_table |
copy |
create_synonym |
create_table |
create_view |
cursor |
delete |
exchange_partition |
foreign_key |
function |
insert |
join |
like_table |
merge |
merge_insert |
merge_update |
merge_when |
rename_table |
rowtype |
select |
swap_table |
trigger |
unload |
update |
Modifier and Type | Method and Description |
---|---|
static EffectType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EffectType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EffectType select
public static final EffectType insert
public static final EffectType update
public static final EffectType join
public static final EffectType merge_update
public static final EffectType merge_insert
public static final EffectType merge_when
public static final EffectType create_view
public static final EffectType create_table
public static final EffectType merge
public static final EffectType delete
public static final EffectType function
public static final EffectType rename_table
public static final EffectType swap_table
public static final EffectType append_from
public static final EffectType like_table
public static final EffectType cursor
public static final EffectType trigger
public static final EffectType clone_database
public static final EffectType clone_schema
public static final EffectType clone_table
public static final EffectType rowtype
public static final EffectType unload
public static final EffectType copy
public static final EffectType foreign_key
public static final EffectType create_synonym
public static final EffectType exchange_partition
public static EffectType[] values()
for (EffectType c : EffectType.values()) System.out.println(c);
public static EffectType 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. All rights reserved.