| Modifier and Type | Method and Description |
|---|---|
default Map<Long,Map<String,V>> |
organize(Map<Long,Map<String,V>> data)
Sort and collect
data. |
default Map<Long,Map<String,V>> |
organize(Map<Long,Map<String,V>> data,
Long at)
Sort and collected
data using the at timestamp as
temporal binding for missing value lookups when an order component does
not explicitly specify a timestamp. |
default Map<Long,Map<String,V>> |
organize(Stream<Map.Entry<Long,Map<String,V>>> stream)
Sort and collect the
stream. |
default Map<Long,Map<String,V>> |
organize(Stream<Map.Entry<Long,Map<String,V>>> stream,
Long at)
Sort and collected
data using the at timestamp as
temporal binding for missing value lookups when an order component does
not explicitly specify a timestamp. |
default Stream<Map.Entry<Long,Map<String,V>>> |
sort(Map<Long,Map<String,V>> data)
Sort
data. |
default Stream<Map.Entry<Long,Map<String,V>>> |
sort(Map<Long,Map<String,V>> data,
Long at)
Sort
data using the at timestamp as temporal binding for
missing value lookups when an order component does not explicitly specify
a timestamp. |
Stream<Map.Entry<Long,Map<String,V>>> |
sort(Stream<Map.Entry<Long,Map<String,V>>> stream)
Sort the
stream. |
Stream<Map.Entry<Long,Map<String,V>>> |
sort(Stream<Map.Entry<Long,Map<String,V>>> stream,
Long at)
Sort the
stream using the at timestamp as temporal
binding for missing value lookups when an order component does not
explicitly specify a timestamp. |
default Stream<Map.Entry<Long,Map<String,V>>> sort(Map<Long,Map<String,V>> data)
data.data - Stream that contains each of the entries in
data in sorted orderdefault Stream<Map.Entry<Long,Map<String,V>>> sort(Map<Long,Map<String,V>> data, @Nullable Long at)
data using the at timestamp as temporal binding for
missing value lookups when an order component does not explicitly specify
a timestamp.data - at - Stream that contains each of the entries in
data in sorted orderStream<Map.Entry<Long,Map<String,V>>> sort(Stream<Map.Entry<Long,Map<String,V>>> stream)
stream.stream - Stream that contains each of the entries in
data in sorted orderStream<Map.Entry<Long,Map<String,V>>> sort(Stream<Map.Entry<Long,Map<String,V>>> stream, @Nullable Long at)
stream using the at timestamp as temporal
binding for missing value lookups when an order component does not
explicitly specify a timestamp.stream - at - Stream that contains each of the entries in
data in sorted orderdefault Map<Long,Map<String,V>> organize(Map<Long,Map<String,V>> data)
data.data - Map that contains the data in sorted
orderdefault Map<Long,Map<String,V>> organize(Map<Long,Map<String,V>> data, @Nullable Long at)
data using the at timestamp as
temporal binding for missing value lookups when an order component does
not explicitly specify a timestamp.data - at - Map that contains the data in sorted
orderdefault Map<Long,Map<String,V>> organize(Stream<Map.Entry<Long,Map<String,V>>> stream)
stream.data - Map that contains the data in sorted
orderdefault Map<Long,Map<String,V>> organize(Stream<Map.Entry<Long,Map<String,V>>> stream, @Nullable Long at)
data using the at timestamp as
temporal binding for missing value lookups when an order component does
not explicitly specify a timestamp.data - at - Map that contains the data in sorted
order