Uses of Interface
app.babylon.table.column.ColumnObject
Packages that use ColumnObject
Package
Description
-
Uses of ColumnObject in app.babylon.table
Methods in app.babylon.table that return ColumnObjectModifier and TypeMethodDescriptionTableColumnar.getDecimal(ColumnName x) <T> ColumnObject<T> TableColumnar.getObject(ColumnName x, Column.Type type) TableColumnar.getString(ColumnName x) -
Uses of ColumnObject in app.babylon.table.column
Subinterfaces of ColumnObject in app.babylon.table.columnModifier and TypeInterfaceDescriptioninterfaceAn object column optimised for repeated values by storing dictionary-encoded categories.Methods in app.babylon.table.column that return ColumnObjectModifier and TypeMethodDescriptionstatic ColumnObject<String> Columns.asStringColumn(Column column) ColumnObject.Builder.build()static ColumnObject<BigDecimal> Columns.newDecimal(ColumnName colName, BigDecimal value, int size) static ColumnObject<String> Columns.newString(ColumnName colName, String value, int size) static ColumnObject<String> Columns.newStringView(ColumnObject<String> c, ViewIndex rowIndex) static ColumnObject<BigDecimal> Columns.stringToDecimal(Column column) static <S> ColumnObject<S> Columns.stringToType(Column column, Function<String, S> parser, Column.Type targetType) default <S> ColumnObject<S> ColumnObject.transform(Transformer<T, S> transformer) Transforms this column into another object column using the supplied transformer.Methods in app.babylon.table.column with parameters of type ColumnObjectModifier and TypeMethodDescriptionstatic BigDecimalColumns.aggregate(ColumnObject<BigDecimal> cd, Aggregate aggregate) static <T> booleanColumnObject.equals(ColumnObject<T> a, Object obj) Compares a column object with another object using column name, size, and row-by-row value equality.Columns.frequencyMap(ColumnObject<T> c) static <T> TColumns.max(ColumnObject<T> co) static <T> TColumns.min(ColumnObject<T> co) static ColumnObject<String> Columns.newStringView(ColumnObject<String> c, ViewIndex rowIndex) -
Uses of ColumnObject in app.babylon.table.selection
Methods in app.babylon.table.selection with parameters of type ColumnObjectModifier and TypeMethodDescriptionstatic <T> SelectionSelections.eq(ColumnObject<T> column, T value) static <T> SelectionSelections.in(ColumnObject<T> column, T[] values) static <T> SelectionSelections.ne(ColumnObject<T> column, T value) static <T> SelectionSelections.nin(ColumnObject<T> column, T[] values) -
Uses of ColumnObject in app.babylon.table.transform
Methods in app.babylon.table.transform that return ColumnObjectModifier and TypeMethodDescriptionMethods in app.babylon.table.transform with parameters of type ColumnObjectModifier and TypeMethodDescriptionstatic LocalDateColumnLocalDates.getMinimum(ColumnObject<LocalDate> column) static DateFormatDateFormatInference.inferFormat(ColumnObject<String> column) static DateFormat[]DateFormatInference.inferFormats(ColumnObject<String>[] columns) static booleanColumnLocalDates.isAllDates(ColumnObject<String> c)