public static enum TotalHits.Relation extends Enum<TotalHits.Relation>
TotalHits.value
should be interpreted.Enum Constant and Description |
---|
EQUAL_TO
The total hit count is equal to
TotalHits.value . |
GREATER_THAN_OR_EQUAL_TO
The total hit count is greater than or equal to
TotalHits.value . |
Modifier and Type | Method and Description |
---|---|
static TotalHits.Relation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TotalHits.Relation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TotalHits.Relation EQUAL_TO
TotalHits.value
.public static final TotalHits.Relation GREATER_THAN_OR_EQUAL_TO
TotalHits.value
.public static TotalHits.Relation[] values()
for (TotalHits.Relation c : TotalHits.Relation.values()) System.out.println(c);
public static TotalHits.Relation 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 © 2000-2021 Apache Software Foundation. All Rights Reserved.