public static enum SearchClause.Comparator extends Enum<SearchClause.Comparator>
Enum Constant and Description |
---|
EQUALS |
GREATER_OR_EQUALS |
GREATER_THAN |
IS_NOT_NULL |
IS_NULL |
LESS_OR_EQUALS |
LESS_THAN |
NOT_EQUALS |
Modifier and Type | Method and Description |
---|---|
static SearchClause.Comparator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SearchClause.Comparator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SearchClause.Comparator IS_NULL
public static final SearchClause.Comparator IS_NOT_NULL
public static final SearchClause.Comparator EQUALS
public static final SearchClause.Comparator NOT_EQUALS
public static final SearchClause.Comparator GREATER_OR_EQUALS
public static final SearchClause.Comparator GREATER_THAN
public static final SearchClause.Comparator LESS_OR_EQUALS
public static final SearchClause.Comparator LESS_THAN
public static SearchClause.Comparator[] values()
for (SearchClause.Comparator c : SearchClause.Comparator.values()) System.out.println(c);
public static SearchClause.Comparator 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 © 2010–2023 The Apache Software Foundation. All rights reserved.