Uses of Interface
dev.hardwood.writer.ListBuilder
Packages that use ListBuilder
Package
Description
Parquet file writer, with a columnar and a row-oriented API over one core.
-
Uses of ListBuilder in dev.hardwood.writer
Methods in dev.hardwood.writer that return ListBuilderModifier and TypeMethodDescriptionListBuilder.addBinary(byte[] value) Appends aBYTE_ARRAYorFIXED_LEN_BYTE_ARRAYentry.ListBuilder.addBoolean(boolean value) Appends aBOOLEANentry.Appends aDATEentry.ListBuilder.addDecimal(BigDecimal value) Appends aDECIMALentry.ListBuilder.addDouble(double value) Appends aDOUBLEentry.ListBuilder.addFloat(float value) Appends aFLOATentry.ListBuilder.addInt(int value) Appends anINT32entry.ListBuilder.addInterval(PqInterval value) Appends anINTERVALentry.ListBuilder.addList(Consumer<ListBuilder> filler) Appends a nested list entry, populating it throughfiller.ListBuilder.addLocalTimestamp(LocalDateTime value) Appends a local-wall-clockTIMESTAMPentry.ListBuilder.addLong(long value) Appends anINT64entry.ListBuilder.addMap(Consumer<MapBuilder> filler) Appends a map entry, populating it throughfiller.ListBuilder.addNull()Appends a null entry, which occupies a position in the list — distinct from the list itself being absent, and from the list being empty.Appends aSTRING,ENUMorJSONentry from its UTF-8 bytes.ListBuilder.addStruct(Consumer<StructBuilder> filler) Appends a struct entry, populating it throughfiller.Appends aTIMEentry.ListBuilder.addTimestamp(Instant value) Appends a UTC-adjustedTIMESTAMPentry.Appends aUUIDentry.Method parameters in dev.hardwood.writer with type arguments of type ListBuilderModifier and TypeMethodDescriptionListBuilder.addList(Consumer<ListBuilder> filler) Appends a nested list entry, populating it throughfiller.StructBuilder.setList(int fieldIndex, Consumer<ListBuilder> filler) Sets aLISTfield by index.StructBuilder.setList(String name, Consumer<ListBuilder> filler) Sets aLISTfield, appending its entries throughfiller.