Class Column
- java.lang.Object
-
- io.wcm.wcm.ui.granite.components.pathfield.Column
-
@ProviderType public final class Column extends java.lang.Object
Represents a column in the column view.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getActiveId()
Returns the active item ID in the column.java.lang.String
getColumnId()
Returns the column ID.java.util.List<ColumnItem>
getItems()
Returns the list of items in the column.boolean
isCurrentResource()
Indicates if this column represents the current resource.boolean
isHasMore()
Indicates if there are more items in the column.boolean
isLazy()
Indicates if the column is loaded lazily.boolean
isMetaElement()
Indicates if this column is a meta element.
-
-
-
Method Detail
-
getColumnId
public java.lang.String getColumnId()
Returns the column ID.- Returns:
- Column ID
-
isHasMore
public boolean isHasMore()
Indicates if there are more items in the column.- Returns:
- true if there are more items, false otherwise
-
isLazy
public boolean isLazy()
Indicates if the column is loaded lazily.- Returns:
- true if lazy loading is enabled, false otherwise
-
isCurrentResource
public boolean isCurrentResource()
Indicates if this column represents the current resource.- Returns:
- true if current resource, false otherwise
-
getActiveId
public java.lang.String getActiveId()
Returns the active item ID in the column.- Returns:
- Active item ID
-
isMetaElement
public boolean isMetaElement()
Indicates if this column is a meta element.- Returns:
- true if meta element, false otherwise
-
getItems
public java.util.List<ColumnItem> getItems()
Returns the list of items in the column.- Returns:
- List of column items
-
-