Uses of Interface
com.broadleafcommerce.metadata.dsl.core.Column
- 
- 
Uses of Column in com.broadleafcommerce.metadata.dsl.core
Classes in com.broadleafcommerce.metadata.dsl.core with type parameters of type Column Modifier and Type Interface Description interfaceColumn<C extends Column<C>>Represents the metadata for a column component.Constructor parameters in com.broadleafcommerce.metadata.dsl.core with type arguments of type Column Constructor Description ColumnList(Collection<? extends Column<?>> c) - 
Uses of Column in com.broadleafcommerce.metadata.dsl.core.extension
Methods in com.broadleafcommerce.metadata.dsl.core.extension that return Column Modifier and Type Method Description default Column<?>Grid. getColumn(String name)Retrieves the column with the given property name, if it exists.Methods in com.broadleafcommerce.metadata.dsl.core.extension that return types with arguments of type Column Modifier and Type Method Description default Optional<Column<?>>Grid. findColumn(String name)Finds the column with the given property name.Methods in com.broadleafcommerce.metadata.dsl.core.extension with parameters of type Column Modifier and Type Method Description default GGrid. addColumn(Column<?> column)Adds a column to this grid.default GGrid. addColumn(String name, Column<?> column)Adds a column with the given property name to this grid.Method parameters in com.broadleafcommerce.metadata.dsl.core.extension with type arguments of type Column Modifier and Type Method Description default GGrid. addColumns(Collection<Column<?>> columns)Adds a collection of columns to this grid. - 
Uses of Column in com.broadleafcommerce.metadata.dsl.core.extension.columns
Subinterfaces of Column in com.broadleafcommerce.metadata.dsl.core.extension.columns Modifier and Type Interface Description interfaceConditionalColumn<C extends ConditionalColumn<C>>Deprecated.please useDynamicColumninterfaceDateColumn<C extends DateColumn<C>>interfaceDynamicColumn<C extends DynamicColumn<C>>Builder that is used for buildingColumnTypes.DYNAMICtype column components.interfaceEmbeddedListColumn<C extends EmbeddedListColumn<C>>Builder that is used for buildingColumnTypes.EMBEDDED_LISTtype column components.interfaceEnumColumn<C extends EnumColumn<C>>interfaceLinkColumn<C extends LinkColumn<C>>interfaceMoneyColumn<C extends MoneyColumn<C>>Represents the metadata for a column that displays a monetary amount.interfaceProgressColumn<C extends ProgressColumn<C>>The column type that is used to render the progress in percentage.interfaceSpelRuleColumn<C extends SpelRuleColumn<C>>Represents the metadata for aColumnTypes.SPEL_RULE.interfaceThumbnailColumn<C extends ThumbnailColumn<C>>Represents the metadata for aColumnTypes.THUMBNAIL.Classes in com.broadleafcommerce.metadata.dsl.core.extension.columns that implement Column Modifier and Type Class Description classAbstractColumn<C extends AbstractColumn<C>>The abstract column component specification.classDefaultColumnclassDefaultConditionalColumnThe default implementation forConditionalColumn.classDefaultDateColumnclassDefaultDynamicColumnThe default implementation forDynamicColumn.classDefaultEmbeddedListColumnThe default implementation forEmbeddedListColumn.classDefaultEnumArrayColumnclassDefaultEnumColumnclassDefaultLinkColumnclassDefaultMoneyColumnclassDefaultProgressColumnThe default implementation forProgressColumn.classDefaultSpelRuleColumnclassDefaultThumbnailColumnMethod parameters in com.broadleafcommerce.metadata.dsl.core.extension.columns with type arguments of type Column Modifier and Type Method Description default CDynamicColumn. when(Conditional<?> conditional, UnaryOperator<Column<?>> fn)Helper method for adding a new column option with a single conditional.default CDynamicColumn. when(List<Conditional<?>> conditionals, UnaryOperator<Column<?>> fn)Helper method for adding a new column option with a list of conditionals.Constructors in com.broadleafcommerce.metadata.dsl.core.extension.columns with parameters of type Column Constructor Description AbstractColumn(Column<?> component)DefaultColumn(Column<?> component) - 
Uses of Column in com.broadleafcommerce.metadata.dsl.core.extension.grids
Methods in com.broadleafcommerce.metadata.dsl.core.extension.grids with parameters of type Column Modifier and Type Method Description default GExportHistoryGrid. addDateCreatedColumn(Column<?> column)Adds the column to display the export created date in the gird.default GExportHistoryGrid. addNameColumn(Column<?> column)Adds the column to display the export name in the gird.default GExportHistoryGrid. addStatusColumn(Column<?> column)Adds the column to display the export status in the gird.Method parameters in com.broadleafcommerce.metadata.dsl.core.extension.grids with type arguments of type Column Modifier and Type Method Description default GExportHistoryGrid. dateCreatedColumn(UnaryOperator<Column<?>> fn)Adds the column to display the export created date in the gird.default GExportHistoryGrid. nameColumn(UnaryOperator<Column<?>> fn)Adds the column to display the export name in the gird.default GExportHistoryGrid. statusColumn(UnaryOperator<Column<?>> fn)Adds the column to display the export status in the gird. 
 -