Class ClusterNav
- java.lang.Object
-
- com.funnelback.publicui.search.model.padre.ClusterNav
-
public class ClusterNav extends java.lang.ObjectContextual 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
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classClusterNav.SchemaConstants for the PADRE XML result packet tags.
-
Constructor Summary
Constructors Constructor Description ClusterNav()ClusterNav(java.lang.Integer level, java.lang.String url, java.lang.String label)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetLabel()Label for this navigation item, such as "King Richard".java.lang.IntegergetLevel()Level of this navigation item.java.lang.StringgetUrl()URL to reach this navigation item.voidsetLabel(java.lang.String label)Label for this navigation item, such as "King Richard".voidsetLevel(java.lang.Integer level)Level of this navigation item.voidsetUrl(java.lang.String url)URL to reach this navigation item.
-
-
-
Method Detail
-
getLevel
public java.lang.Integer getLevel()
Level of this navigation item.
0 is used for the root, then 1, 2, etc.
-
setLevel
public void setLevel(java.lang.Integer level)
Level of this navigation item.
0 is used for the root, then 1, 2, etc.
-
getUrl
public java.lang.String getUrl()
URL to reach this navigation item.
-
setUrl
public void setUrl(java.lang.String url)
URL to reach this navigation item.
-
getLabel
public java.lang.String getLabel()
Label for this navigation item, such as "King Richard".
-
setLabel
public void setLabel(java.lang.String label)
Label for this navigation item, such as "King Richard".
-
-