Class ClusterNav
- java.lang.Object
-
- com.funnelback.publicui.search.model.padre.ClusterNav
-
public class ClusterNav extends Object
Contextual navigation details to navigate through results and clusters.
For example you can follow a navigation path like:
- King
- King Richard
- King Richard the great
For each step a
ClusterNavitem will be provided.- Since:
- 11.0
- See Also:
ContextualNavigation,Category,Cluster
-
-
Constructor Summary
Constructors Constructor Description ClusterNav()ClusterNav(Integer level, String url, String label)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetLabel()Label for this navigation item, such as "King Richard".IntegergetLevel()Level of this navigation item.StringgetUrl()URL to reach this navigation item.voidsetLabel(String label)Label for this navigation item, such as "King Richard".voidsetLevel(Integer level)Level of this navigation item.voidsetUrl(String url)URL to reach this navigation item.
-
-
-
Method Detail
-
getLevel
public Integer getLevel()
Level of this navigation item.
0 is used for the root, then 1, 2, etc.
-
setLevel
public void setLevel(Integer level)
Level of this navigation item.
0 is used for the root, then 1, 2, etc.
-
getUrl
public String getUrl()
URL to reach this navigation item.
-
setUrl
public void setUrl(String url)
URL to reach this navigation item.
-
getLabel
public String getLabel()
Label for this navigation item, such as "King Richard".
-
setLabel
public void setLabel(String label)
Label for this navigation item, such as "King Richard".
-
-