Index
All Classes and Interfaces|All Packages
F
- field() - Method in class io.avery.vinyl.FieldPin
-
Returns this pin's field.
- field(Field<?>) - Method in class io.avery.vinyl.SelectAPI
-
Defines (or redefines) the given field as the lookup of the same field on each input record.
- field(Field<T>, Comparator<? super Record>, BiConsumer<? super List<Record>, ? super Consumer<T>>) - Method in class io.avery.vinyl.SelectAPI.Window
-
Defines (or redefines) the given field in terms of the given analytic function, applied to input records in each partition.
- field(Field<T>, BiConsumer<? super List<Record>, ? super Consumer<T>>) - Method in class io.avery.vinyl.SelectAPI.Window
-
Shorthand for calling
SelectAPI.Window.field(Field, Comparator, BiConsumer)
, passing anull
comparator. - field(Field<T>, BiFunction<? super Record, ? super Record, ? extends T>) - Method in class io.avery.vinyl.JoinAPI.Select
-
Defines (or redefines) the given field as the application of the given function to each pair of left and right-side input records.
- field(Field<T>, Function<? super Record, ? extends T>) - Method in class io.avery.vinyl.SelectAPI
-
Defines (or redefines) the given field as the application of the given function to each input record.
- field(Field<U>, BiConsumer<? super T, ? super Consumer<U>>) - Method in class io.avery.vinyl.SelectAPI.Window.Fields
-
Defines (or redefines) the given field in terms of the given analytic function, applied to this sub-configurator's intermediate result in each partition.
- field(Field<U>, Function<? super T, ? extends U>) - Method in class io.avery.vinyl.IntoAPI
-
Defines (or redefines) the given field as the application of the given function to each input object.
- field(Field<U>, Function<? super T, ? extends U>) - Method in class io.avery.vinyl.JoinAPI.Select.Fields
-
Defines (or redefines) the given field as the application of the given function to this sub-configurator's intermediate result.
- field(Field<U>, Function<? super T, ? extends U>) - Method in class io.avery.vinyl.SelectAPI.Fields
-
Defines (or redefines) the given field as the application of the given function to this sub-configurator's intermediate result.
- Field<T> - Class in io.avery.vinyl
-
An identifier used to access a typed value in a
record
. - Field(String) - Constructor for class io.avery.vinyl.Field
-
Creates a new field with the given name, used by the field's string representation.
- FieldPin<T> - Class in io.avery.vinyl
-
An object that associates a field with a header index, for optimized field value lookup.
- FieldPin(Field<T>, int) - Constructor for class io.avery.vinyl.FieldPin
-
Creates a new
FieldPin
from the given field and index. - fields() - Method in class io.avery.vinyl.Header
-
Returns an unmodifiable view of the header fields.
- fields(Field<?>...) - Method in class io.avery.vinyl.SelectAPI
-
Defines (or redefines) each of the given fields as the lookup of the same field on each input record.
- fields(Comparator<? super Record>, Consumer<SelectAPI.Window.Fields<List<Record>>>) - Method in class io.avery.vinyl.SelectAPI.Window
-
Shorthand for calling
SelectAPI.Window.fields(Comparator, Function, Consumer)
, passing anidentity
mapper. - fields(Comparator<? super Record>, Function<? super List<Record>, ? extends T>, Consumer<SelectAPI.Window.Fields<T>>) - Method in class io.avery.vinyl.SelectAPI.Window
-
Configures a sub-configurator, that may define (or redefine) fields in terms of analytic functions that take as input the result of applying the given function to input records in each partition.
- fields(BiFunction<? super Record, ? super Record, ? extends T>, Consumer<JoinAPI.Select.Fields<T>>) - Method in class io.avery.vinyl.JoinAPI.Select
-
Configures a sub-configurator, that may define (or redefine) fields in terms of the result of applying the given function to each pair of left and right-side input records.
- fields(Function<? super Record, ? extends T>, Consumer<SelectAPI.Fields<T>>) - Method in class io.avery.vinyl.SelectAPI
-
Configures a sub-configurator, that may define (or redefine) fields in terms of the result of applying the given function to each input record.
- fields(Function<? super List<Record>, ? extends T>, Consumer<SelectAPI.Window.Fields<T>>) - Method in class io.avery.vinyl.SelectAPI.Window
-
Shorthand for calling
SelectAPI.Window.fields(Comparator, Function, Consumer)
, passing anull
comparator. - filter(DoublePredicate) - Method in class io.avery.vinyl.RecordStream.AuxDouble
- filter(IntPredicate) - Method in class io.avery.vinyl.RecordStream.AuxInt
- filter(LongPredicate) - Method in class io.avery.vinyl.RecordStream.AuxLong
- filter(Predicate<? super Record>) - Method in class io.avery.vinyl.RecordStream
- filter(Predicate<? super T>) - Method in class io.avery.vinyl.RecordStream.Aux
- findAny() - Method in class io.avery.vinyl.RecordStream.Aux
- findAny() - Method in class io.avery.vinyl.RecordStream.AuxDouble
- findAny() - Method in class io.avery.vinyl.RecordStream.AuxInt
- findAny() - Method in class io.avery.vinyl.RecordStream.AuxLong
- findAny() - Method in class io.avery.vinyl.RecordStream
- findFirst() - Method in class io.avery.vinyl.RecordStream.Aux
- findFirst() - Method in class io.avery.vinyl.RecordStream.AuxDouble
- findFirst() - Method in class io.avery.vinyl.RecordStream.AuxInt
- findFirst() - Method in class io.avery.vinyl.RecordStream.AuxLong
- findFirst() - Method in class io.avery.vinyl.RecordStream
- flatMap(DoubleFunction<? extends DoubleStream>) - Method in class io.avery.vinyl.RecordStream.AuxDouble
- flatMap(Function<? super Record, ? extends Stream<? extends R>>) - Method in class io.avery.vinyl.RecordStream
- flatMap(Function<? super T, ? extends Stream<? extends R>>) - Method in class io.avery.vinyl.RecordStream.Aux
- flatMap(IntFunction<? extends IntStream>) - Method in class io.avery.vinyl.RecordStream.AuxInt
- flatMap(LongFunction<? extends LongStream>) - Method in class io.avery.vinyl.RecordStream.AuxLong
- flatMapToDouble(Function<? super Record, ? extends DoubleStream>) - Method in class io.avery.vinyl.RecordStream
- flatMapToDouble(Function<? super T, ? extends DoubleStream>) - Method in class io.avery.vinyl.RecordStream.Aux
- flatMapToInt(Function<? super Record, ? extends IntStream>) - Method in class io.avery.vinyl.RecordStream
- flatMapToInt(Function<? super T, ? extends IntStream>) - Method in class io.avery.vinyl.RecordStream.Aux
- flatMapToLong(Function<? super Record, ? extends LongStream>) - Method in class io.avery.vinyl.RecordStream
- flatMapToLong(Function<? super T, ? extends LongStream>) - Method in class io.avery.vinyl.RecordStream.Aux
- forEach(Consumer<? super Record>) - Method in class io.avery.vinyl.RecordStream
- forEach(Consumer<? super T>) - Method in class io.avery.vinyl.RecordStream.Aux
- forEach(DoubleConsumer) - Method in class io.avery.vinyl.RecordStream.AuxDouble
- forEach(IntConsumer) - Method in class io.avery.vinyl.RecordStream.AuxInt
- forEach(LongConsumer) - Method in class io.avery.vinyl.RecordStream.AuxLong
- forEachOrdered(Consumer<? super Record>) - Method in class io.avery.vinyl.RecordStream
- forEachOrdered(Consumer<? super T>) - Method in class io.avery.vinyl.RecordStream.Aux
- forEachOrdered(DoubleConsumer) - Method in class io.avery.vinyl.RecordStream.AuxDouble
- forEachOrdered(IntConsumer) - Method in class io.avery.vinyl.RecordStream.AuxInt
- forEachOrdered(LongConsumer) - Method in class io.avery.vinyl.RecordStream.AuxLong
- fromAgg(Collector<? super Record, ?, T>) - Static method in class io.avery.vinyl.Analytics
-
Converts an aggregate function (modeled by a
Collector
) to an analytic function that emits the single result of the aggregate function. - fullJoin(RecordStream, Function<JoinAPI.On, JoinPred>, Consumer<JoinAPI.Select>) - Method in class io.avery.vinyl.RecordStream
-
Returns a stream that performs a full outer join between this (left) stream and the given right stream.
All Classes and Interfaces|All Packages