Uses of Interface
com.flowingcode.vaadin.addons.easygrid.renderers.RendererFactory
Packages that use RendererFactory
Package
Description
-
Uses of RendererFactory in com.flowingcode.vaadin.addons.easygrid
Methods in com.flowingcode.vaadin.addons.easygrid with parameters of type RendererFactoryModifier and TypeMethodDescriptionEasyColumn<T,V> EasyColumn.setRendererFactory(RendererFactory<T, V> rendererFactory) Sets a custom renderer factory for this column. -
Uses of RendererFactory in com.flowingcode.vaadin.addons.easygrid.config
Methods in com.flowingcode.vaadin.addons.easygrid.config that return RendererFactoryModifier and TypeMethodDescription<T> RendererFactory<T,V> ColumnConfiguration.getRendererFactory()Returns the effective renderer factory, walking the configuration chain until a non-nullvalue is found, ornullif none is configured.Methods in com.flowingcode.vaadin.addons.easygrid.config with parameters of type RendererFactoryModifier and TypeMethodDescription<T> ColumnConfiguration<V>ColumnConfiguration.setRendererFactory(RendererFactory<T, V> rendererFactory) Sets a custom renderer factory that creates a renderer from a value provider. -
Uses of RendererFactory in com.flowingcode.vaadin.addons.easygrid.renderers
Methods in com.flowingcode.vaadin.addons.easygrid.renderers that return RendererFactoryModifier and TypeMethodDescription<T> RendererFactory<T,LocalDate> LocalDateRenderers.of()Returns a factory that uses the default locale and format.<T> RendererFactory<T,LocalDate> LocalDateRenderers.of(SerializableSupplier<DateTimeFormatter> formatter) Returns a factory that formats dates using the givenDateTimeFormattersupplier.<T> RendererFactory<T,LocalDate> LocalDateRenderers.of(SerializableSupplier<DateTimeFormatter> formatter, String nullRepresentation) Returns a factory that formats dates using the givenDateTimeFormattersupplier and null representation.<T> RendererFactory<T,LocalDate> Returns a factory that formats dates with the given pattern using the default locale.<T> RendererFactory<T,LocalDate> Returns a factory that formats dates with the given pattern and locale.<T> RendererFactory<T,LocalDate> Returns a factory that formats dates with the given pattern, locale, and null representation.<T> RendererFactory<T,LocalDateTime> LocalDateTimeRenderers.of()Returns a factory that uses the default locale and format.<T> RendererFactory<T,LocalDateTime> LocalDateTimeRenderers.of(SerializableSupplier<DateTimeFormatter> formatter) Returns a factory that formats date-times using the givenDateTimeFormattersupplier.<T> RendererFactory<T,LocalDateTime> LocalDateTimeRenderers.of(SerializableSupplier<DateTimeFormatter> formatter, String nullRepresentation) Returns a factory that formats date-times using the givenDateTimeFormattersupplier and null representation.<T> RendererFactory<T,LocalDateTime> Returns a factory that formats date-times with the given pattern using the default locale.<T> RendererFactory<T,LocalDateTime> Returns a factory that formats date-times with the given pattern and locale.<T> RendererFactory<T,LocalDateTime> Returns a factory that formats date-times with the given pattern, locale, and null representation.<T> RendererFactory<T,LocalTime> LocalTimeRenderers.of()Returns a factory that usesDateTimeFormatter.ISO_LOCAL_TIMEand the default locale.<T> RendererFactory<T,LocalTime> LocalTimeRenderers.of(SerializableSupplier<DateTimeFormatter> formatter) Returns a factory that formats times using the givenDateTimeFormattersupplier.<T> RendererFactory<T,LocalTime> LocalTimeRenderers.of(SerializableSupplier<DateTimeFormatter> formatter, String nullRepresentation) Returns a factory that formats times using the givenDateTimeFormattersupplier and null representation.<T> RendererFactory<T,LocalTime> Returns a factory that formats times with the given pattern using the default locale.<T> RendererFactory<T,LocalTime> Returns a factory that formats times with the given pattern and locale.<T> RendererFactory<T,LocalTime> Returns a factory that formats times with the given pattern, locale, and null representation.<T> RendererFactory<T,Number> NumberRenderers.of(SerializableSupplier<Locale> locale) Returns a factory that formats numbers using the default format for the locale supplied at column-creation time.<T> RendererFactory<T,Number> NumberRenderers.of(SerializableSupplier<Locale> locale, String nullRepresentation) Returns a factory that formats numbers using the default format for the locale supplied at column-creation time, with the given null representation.<T> RendererFactory<T,Number> Returns a factory that formats numbers using the givenFormatterformat string and the default locale.<T> RendererFactory<T,Number> Returns a factory that formats numbers using the givenFormatterformat string and locale.<T> RendererFactory<T,Number> Returns a factory that formats numbers using the givenFormatterformat string, locale, and null representation.<T> RendererFactory<T,Number> NumberRenderers.of(NumberFormat numberFormat) Returns a factory that formats numbers using the givenNumberFormat.<T> RendererFactory<T,Number> NumberRenderers.of(NumberFormat numberFormat, String nullRepresentation) Returns a factory that formats numbers using the givenNumberFormatand null representation.<T> RendererFactory<T,Number> Returns a factory that formats numbers using the default format for the given locale.