public static enum QueryProvider.QueryMergeStrategy extends Enum<QueryProvider.QueryMergeStrategy>
Enum Constant and Description |
---|
AND
Merge queries by intersection.
|
AND_NOT
Merge queries by inverse of intersection.
|
OR
Merge queries by union.
|
OR_NOT
Merge queries by inverse of union.
|
Modifier and Type | Method and Description |
---|---|
static QueryProvider.QueryMergeStrategy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static QueryProvider.QueryMergeStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QueryProvider.QueryMergeStrategy AND
public static final QueryProvider.QueryMergeStrategy OR
public static final QueryProvider.QueryMergeStrategy AND_NOT
public static final QueryProvider.QueryMergeStrategy OR_NOT
public static QueryProvider.QueryMergeStrategy[] values()
for (QueryProvider.QueryMergeStrategy c : QueryProvider.QueryMergeStrategy.values()) System.out.println(c);
public static QueryProvider.QueryMergeStrategy 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 (c) 2014-2021 All Rights Reserved by the RWS Group for and on behalf of its affiliates and subsidiaries