@StableMinor(version="12.3", sinceVersion="8.1") public static enum SearchFieldClause.Operator extends Enum<SearchFieldClause.Operator>
Enum Constant and Description |
---|
ANY
Any of the values specified must be present in the searching scope.
|
GREATER_THAN
Only values greater than the searching scope may be present.
|
GREATER_THAN_OR_EQUAL_TO
Only values greater than or equal to the searching scope may be present.
|
LESS_THAN
Only values lesser than the searching scope may be present.
|
LESS_THAN_OR_EQUAL_TO
Only values lesser than or equal to the searching scope may be present.
|
NONE_OF
None of the values may be present in the searching scope.
|
STARTS_WITH
Filter for terms that starts with any of the given values.
null values will be ignored.The value will be converted to String to be used. This operator is only supported by String-based fields. |
Modifier and Type | Method and Description |
---|---|
static SearchFieldClause.Operator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SearchFieldClause.Operator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SearchFieldClause.Operator ANY
public static final SearchFieldClause.Operator NONE_OF
public static final SearchFieldClause.Operator GREATER_THAN
public static final SearchFieldClause.Operator GREATER_THAN_OR_EQUAL_TO
public static final SearchFieldClause.Operator LESS_THAN
public static final SearchFieldClause.Operator LESS_THAN_OR_EQUAL_TO
public static final SearchFieldClause.Operator STARTS_WITH
null
values will be ignored.public static SearchFieldClause.Operator[] values()
for (SearchFieldClause.Operator c : SearchFieldClause.Operator.values()) System.out.println(c);
public static SearchFieldClause.Operator 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 nullLumisXP 12.3.0.200408 - Copyright © 2006–2020 Lumis EIP Tecnologia da Informação LTDA. All Rights Reserved.