public static enum FacetRange.Other extends Enum<FacetRange.Other>
| Enum Constant and Description |
|---|
AFTER
All records with field values greater then the upper bound of the last range.
|
ALL
Include all other counts (before, between, and after)
|
BEFORE
All records with field values lower then lower bound of the first range.
|
BETWEEN
All records with field values between the start and end bounds of all ranges.
|
NON
Do not include any counts.
|
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static FacetRange.Other |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FacetRange.Other[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FacetRange.Other BEFORE
public static final FacetRange.Other AFTER
public static final FacetRange.Other BETWEEN
public static final FacetRange.Other NON
public static final FacetRange.Other ALL
public static FacetRange.Other[] values()
for (FacetRange.Other c : FacetRange.Other.values()) System.out.println(c);
public static FacetRange.Other 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 nullpublic String toString()
toString in class Enum<FacetRange.Other>