Class Breadcrumb
- java.lang.Object
-
- org.patternfly.component.BaseComponentFlat<HTMLElement,Breadcrumb>
-
- org.patternfly.component.breadcrumb.Breadcrumb
-
- All Implemented Interfaces:
Finder<HTMLElement>,HasElement<HTMLElement,Breadcrumb>,HasHTMLElement<HTMLElement,Breadcrumb>,IsElement<HTMLElement>,TypedBuilder<HTMLElement,Breadcrumb>,Component
public class Breadcrumb extends BaseComponentFlat<HTMLElement,Breadcrumb>
A breadcrumb provides page context to help users navigate more efficiently and understand where they are in the application hierarchy.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Breadcrumbadd(BreadcrumbItem item)BreadcrumbaddItem(BreadcrumbItem item)<T> BreadcrumbaddItems(Iterable<T> items, Function<T,BreadcrumbItem> display)BreadcrumbariaLabel(String label)static Breadcrumbbreadcrumb()BreadcrumbonSelect(SelectHandler<BreadcrumbItem> selectHandler)Breadcrumbthat()<T> voidupdateItems(Iterable<T> items, Function<T,BreadcrumbItem> display)-
Methods inherited from class org.patternfly.component.BaseComponentFlat
componentType, element
-
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
-
Method Detail
-
breadcrumb
public static Breadcrumb breadcrumb()
-
addItems
public <T> Breadcrumb addItems(Iterable<T> items, Function<T,BreadcrumbItem> display)
-
addItem
public Breadcrumb addItem(BreadcrumbItem item)
-
add
public Breadcrumb add(BreadcrumbItem item)
-
that
public Breadcrumb that()
-
ariaLabel
public Breadcrumb ariaLabel(String label)
-
onSelect
public Breadcrumb onSelect(SelectHandler<BreadcrumbItem> selectHandler)
-
updateItems
public <T> void updateItems(Iterable<T> items, Function<T,BreadcrumbItem> display)
-
-