public enum RecordGenerationPolicy extends Enum<RecordGenerationPolicy>
| Enum Constant and Description |
|---|
Concatenate
The normal join operation policy.
|
KeepLeft
Only the fields of the left input are kept.
|
KeepRight
Similar to the
RecordCreationPolicy#KeepLeft option. |
| Modifier and Type | Method and Description |
|---|---|
static RecordGenerationPolicy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RecordGenerationPolicy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RecordGenerationPolicy Concatenate
public static final RecordGenerationPolicy KeepLeft
public static final RecordGenerationPolicy KeepRight
RecordCreationPolicy#KeepLeft option. Included for completenesspublic static RecordGenerationPolicy[] values()
for (RecordGenerationPolicy c : RecordGenerationPolicy.values()) System.out.println(c);
public static RecordGenerationPolicy 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 © 2017. All Rights Reserved.