Class Category
- java.lang.Object
-
- com.funnelback.publicui.search.model.padre.Category
-
public class Category extends java.lang.ObjectA contextual navigation category (type, topic, site).- Since:
- 11.0
- See Also:
ContextualNavigation,Cluster,ClusterNav
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classCategory.SchemaConstants for the PADRE XML result packet tags.
-
Field Summary
Fields Modifier and Type Field Description private java.util.List<Cluster>clustersList of clusters (suggestions) for this category.private java.lang.StringfewerLinkLink to get fewer values for this category.private java.lang.IntegermoreNumber of additional values of this categories, if any.private java.lang.StringmoreLinkLink to get more values for this category.private java.lang.StringnameName of the category ("type", "topic" or "site").
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<Cluster>getClusters()List of clusters (suggestions) for this category.java.lang.StringgetFewerLink()Link to get fewer values for this category.java.lang.IntegergetMore()Number of additional values of this categories, if any.java.lang.StringgetMoreLink()Link to get more values for this category.java.lang.StringgetName()Name of the category ("type", "topic" or "site").voidsetFewerLink(java.lang.String fewerLink)Link to get fewer values for this category.voidsetMore(java.lang.Integer more)Number of additional values of this categories, if any.voidsetMoreLink(java.lang.String moreLink)Link to get more values for this category.voidsetName(java.lang.String name)Name of the category ("type", "topic" or "site").
-
-
-
Field Detail
-
name
private java.lang.String name
Name of the category ("type", "topic" or "site").
-
more
private java.lang.Integer more
Number of additional values of this categories, if any.
-
moreLink
private java.lang.String moreLink
Link to get more values for this category.
-
fewerLink
private java.lang.String fewerLink
Link to get fewer values for this category.
-
clusters
private final java.util.List<Cluster> clusters
List of clusters (suggestions) for this category.
-
-
Method Detail
-
getName
public java.lang.String getName()
Name of the category ("type", "topic" or "site").
-
setName
public void setName(java.lang.String name)
Name of the category ("type", "topic" or "site").
-
getMore
public java.lang.Integer getMore()
Number of additional values of this categories, if any.
-
setMore
public void setMore(java.lang.Integer more)
Number of additional values of this categories, if any.
-
getMoreLink
public java.lang.String getMoreLink()
Link to get more values for this category.
-
setMoreLink
public void setMoreLink(java.lang.String moreLink)
Link to get more values for this category.
-
getFewerLink
public java.lang.String getFewerLink()
Link to get fewer values for this category.
-
setFewerLink
public void setFewerLink(java.lang.String fewerLink)
Link to get fewer values for this category.
-
getClusters
public java.util.List<Cluster> getClusters()
List of clusters (suggestions) for this category.
-
-