public enum FacetSortType extends Enum<FacetSortType>
| Enum Constant and Description |
|---|
count
sort on count of topic
|
name
sort on name of topic
|
| Modifier and Type | Field and Description |
|---|---|
Comparator<FacetTopic> |
compartor |
String |
solrValue |
| Modifier and Type | Method and Description |
|---|---|
static FacetSortType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FacetSortType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FacetSortType count
public static final FacetSortType name
public String solrValue
public Comparator<FacetTopic> compartor
public static FacetSortType[] values()
for (FacetSortType c : FacetSortType.values()) System.out.println(c);
public static FacetSortType 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 © 2009–2015 CodeLutin. All rights reserved.