public enum FacetTermSortMode extends Enum<FacetTermSortMode>
Enum Constant and Description |
---|
HITS_ASC |
HITS_DESC |
VALUE_ASC |
VALUE_DESC |
Modifier and Type | Method and Description |
---|---|
static FacetTermSortMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FacetTermSortMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FacetTermSortMode VALUE_ASC
public static final FacetTermSortMode VALUE_DESC
public static final FacetTermSortMode HITS_ASC
public static final FacetTermSortMode HITS_DESC
public static FacetTermSortMode[] values()
for (FacetTermSortMode c : FacetTermSortMode.values()) System.out.println(c);
public static FacetTermSortMode 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 © 2016. All Rights Reserved.