public static enum SqlTableLike.MergingStrategy extends Enum<SqlTableLike.MergingStrategy>
Enum Constant and Description |
---|
EXCLUDING |
INCLUDING |
OVERWRITING |
Modifier and Type | Method and Description |
---|---|
static SqlTableLike.MergingStrategy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SqlTableLike.MergingStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SqlTableLike.MergingStrategy INCLUDING
public static final SqlTableLike.MergingStrategy EXCLUDING
public static final SqlTableLike.MergingStrategy OVERWRITING
public static SqlTableLike.MergingStrategy[] values()
for (SqlTableLike.MergingStrategy c : SqlTableLike.MergingStrategy.values()) System.out.println(c);
public static SqlTableLike.MergingStrategy 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 © 2014–2024 The Apache Software Foundation. All rights reserved.