| Package | Description |
|---|---|
| com.landawn.abacus.http | |
| com.landawn.abacus.util | |
| com.landawn.abacus.util.function | |
| com.landawn.abacus.util.stream |
| Modifier and Type | Method and Description |
|---|---|
void |
HttpHeaders.forEach(BiConsumer<String,Object> action) |
| Modifier and Type | Field and Description |
|---|---|
static BiConsumer<String[],String> |
CSVUtil.CSV_LINE_PARSER |
static BiConsumer<String[],String> |
CSVUtil.CSV_LINE_PARSER_BY_SPLITTER |
| Modifier and Type | Method and Description |
|---|---|
static <A,T,U> BiConsumer<T,U> |
Fn.c(A a,
TriConsumer<A,T,U> triConsumer) |
static <T,U> BiConsumer<T,U> |
Fn.c(BiConsumer<T,U> biConsumer) |
static <A,T,U,E extends Exception> |
Fn.cc(A a,
Throwables.TriConsumer<A,T,U,E> triConsumer) |
static <T,U,E extends Exception> |
Fn.cc(Throwables.BiConsumer<T,U,E> biConsumer) |
static <T,U> BiConsumer<T,U> |
Fn.BiConsumers.doNothing() |
static <T,U> BiConsumer<T,U> |
Fn.f2c(BiFunction<? super T,? super U,?> func) |
static <T,U> BiConsumer<T,U> |
Fn.from(BiConsumer<T,U> consumer) |
static <U,T> BiConsumer<U,T> |
Fn.BiConsumers.indexed(IndexedBiConsumer<U,T> action)
Returns a stateful
BiPredicate. |
static <T,C extends Collection<? super T>> |
Fn.BiConsumers.ofAdd() |
static <T,C extends Collection<T>> |
Fn.BiConsumers.ofAddAll()
Of add all.
|
static <T> BiConsumer<StringBuilder,T> |
Fn.BiConsumers.ofAppend() |
static BiConsumer<Joiner,Joiner> |
Fn.BiConsumers.ofMerge() |
static <K,V,M extends Map<K,V>,E extends Map.Entry<K,V>> |
Fn.BiConsumers.ofPut() |
static <K,V,M extends Map<K,V>> |
Fn.BiConsumers.ofPutAll()
Of put all.
|
static <T,C extends Collection<? super T>> |
Fn.BiConsumers.ofRemove() |
static <T,C extends Collection<T>> |
Fn.BiConsumers.ofRemoveAll()
Of remove all.
|
static <K,V,M extends Map<K,V>> |
Fn.BiConsumers.ofRemoveByKey()
Of remove by key.
|
static <T,U> BiConsumer<T,U> |
Fn.println(String separator) |
static <T,U> BiConsumer<T,U> |
Fn.sc(Object mutex,
BiConsumer<T,U> biConsumer)
Synchronized
BiConsumer. |
| Modifier and Type | Method and Description |
|---|---|
void |
NoCachingNoUpdating.DisposableEntry.accept(BiConsumer<? super K,? super V> action) |
void |
NoCachingNoUpdating.DisposablePair.accept(BiConsumer<? super L,? super R> action) |
static <K,V> Consumer<Map.Entry<K,V>> |
Fn.acceptKeyVal(BiConsumer<? super K,? super V> consumer)
Accept key val.
|
static <A,T> Consumer<T> |
Fn.c(A a,
BiConsumer<A,T> biConsumer) |
static <K,V> Consumer<Map.Entry<K,V>> |
Fn.Entries.c(BiConsumer<? super K,? super V> c) |
static <T,U> BiConsumer<T,U> |
Fn.c(BiConsumer<T,U> biConsumer) |
static <T,U> BiFunction<T,U,Void> |
Fn.c2f(BiConsumer<? super T,? super U> action) |
static <T,U,R> BiFunction<T,U,R> |
Fn.c2f(BiConsumer<? super T,? super U> action,
R valueToReturn) |
static <A,T,E extends Throwable> |
Fn.Fnn.cc(A a,
BiConsumer<A,T> biConsumer) |
static <T,U,E extends Throwable> |
Fn.Fnn.cc(BiConsumer<T,U> biConsumer) |
static <A,T> Consumer<T> |
Fn.sc(Object mutex,
A a,
BiConsumer<A,T> biConsumer)
Synchronized
Consumer. |
static <T,U> BiConsumer<T,U> |
Fn.sc(Object mutex,
BiConsumer<T,U> biConsumer)
Synchronized
BiConsumer. |
static void |
CSVUtil.setCSVLineParser(BiConsumer<String[],String> parser) |
static <T,A,B> BiIterator<A,B> |
Iterators.unzip(Collection<? extends T> c,
BiConsumer<? super T,Pair<A,B>> unzip) |
static <T,A,B> BiIterator<A,B> |
BiIterator.unzip(Iterator<? extends T> iter,
BiConsumer<? super T,Pair<A,B>> unzip) |
static <T,A,B> BiIterator<A,B> |
Iterators.unzip(Iterator<? extends T> iter,
BiConsumer<? super T,Pair<A,B>> unzip) |
static <T,A,B,C> TriIterator<A,B,C> |
TriIterator.unzip(Iterator<? extends T> iter,
BiConsumer<? super T,Triple<A,B,C>> unzip) |
static <T,A,B,C> TriIterator<A,B,C> |
Iterators.unzipp(Collection<? extends T> c,
BiConsumer<? super T,Triple<A,B,C>> unzip) |
static <T,A,B,C> TriIterator<A,B,C> |
Iterators.unzipp(Iterator<? extends T> iter,
BiConsumer<? super T,Triple<A,B,C>> unzip) |
| Modifier and Type | Method and Description |
|---|---|
default BiConsumer<T,U> |
BiConsumer.andThen(BiConsumer<? super T,? super U> after) |
| Modifier and Type | Method and Description |
|---|---|
BiConsumer<A,T> |
Collector.accumulator() |
| Modifier and Type | Method and Description |
|---|---|
static <T,A,R> Collector<T,A,R> |
Collector.of(Supplier<A> supplier,
BiConsumer<A,T> accumulator,
BinaryOperator<A> combiner,
Function<A,R> finisher,
Collector.Characteristics... characteristics) |
static <T,R> Collector<T,R,R> |
Collector.of(Supplier<R> supplier,
BiConsumer<R,T> accumulator,
BinaryOperator<R> combiner,
Collector.Characteristics... characteristics) |
Copyright © 2021. All rights reserved.