public enum MatchOperator extends Enum<MatchOperator>
Enum Constant and Description |
---|
AND
Individual match terms are concatenated with a logical AND.
|
OR
Individual match terms are concatenated with a logical OR - this is the default if not provided.
|
Modifier and Type | Method and Description |
---|---|
static MatchOperator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MatchOperator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MatchOperator OR
public static final MatchOperator AND
public static MatchOperator[] values()
for (MatchOperator c : MatchOperator.values()) System.out.println(c);
public static MatchOperator 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 © 2024 Couchbase, Inc.. All rights reserved.