public static enum FacetRange.Include extends Enum<FacetRange.Include>
Enum Constant and Description |
---|
ALL
Includes all options
|
EDGE
The "before" and "after" ranges will be inclusive of their bounds, even if the first or last ranges already
include those boundaries.
|
LOWER
All gap-based ranges include their lower bound.
|
OUTER
The first and last gap ranges include their edge bounds (lower for the first one, upper for the last one)
even if the corresponding upper/lower option is not specified.
|
UPPER
All gap-based ranges include their upper bound.
|
Modifier and Type | Method and Description |
---|---|
String |
toString() |
static FacetRange.Include |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FacetRange.Include[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FacetRange.Include LOWER
public static final FacetRange.Include UPPER
public static final FacetRange.Include OUTER
public static final FacetRange.Include EDGE
public static final FacetRange.Include ALL
public static FacetRange.Include[] values()
for (FacetRange.Include c : FacetRange.Include.values()) System.out.println(c);
public static FacetRange.Include 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.Include>