public enum UnionFieldsStrategy extends java.lang.Enum<UnionFieldsStrategy> implements ValueEnum
unionFields setting is provided.| Enum Constant and Description |
|---|
ALL Create a unioned field for every field contributed by every member dataSource. |
INTERSECT Only create a unioned field where all of the member dataSources have a field with the same name and data type |
MATCHING Create a unioned field where at least two of the member dataSources have a field with the same name and data type. |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String | getValue() |
static UnionFieldsStrategy | valueOf(java.lang.String name) Returns the enum constant of this type with the specified name. |
static UnionFieldsStrategy[] | values() Returns an array containing the constants of this enum type, in the order they are declared. |
public static final UnionFieldsStrategy INTERSECT
If this enumerated value is used in a Component XML file or server-side DataSource descriptor (.ds.xml file), use the value "intersect".
public static final UnionFieldsStrategy MATCHING
If this enumerated value is used in a Component XML file or server-side DataSource descriptor (.ds.xml file), use the value "matching".
public static final UnionFieldsStrategy ALL
If this enumerated value is used in a Component XML file or server-side DataSource descriptor (.ds.xml file), use the value "all".
public static UnionFieldsStrategy[] values()
for (UnionFieldsStrategy c : UnionFieldsStrategy.values()) System.out.println(c);
public static UnionFieldsStrategy valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null