public static enum UnionAll.UnionMode extends Enum<UnionAll.UnionMode>
Enum Constant and Description |
---|
MAPBYNAME
Automatically determine the schema by mapping the fields by name.
|
MAPBYPOSITION
Automatically determine the schema by mapping the fields by position.
|
MAPBYSCHEMA
Manually create and define the schema.
|
Modifier and Type | Method and Description |
---|---|
static UnionAll.UnionMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UnionAll.UnionMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UnionAll.UnionMode MAPBYPOSITION
public static final UnionAll.UnionMode MAPBYNAME
public static final UnionAll.UnionMode MAPBYSCHEMA
public static UnionAll.UnionMode[] values()
for (UnionAll.UnionMode c : UnionAll.UnionMode.values()) System.out.println(c);
public static UnionAll.UnionMode 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 © 2020 Actian Corporation. All rights reserved.