public final class BooleanIterableIterate
extends java.lang.Object
Modifier and Type | Method | Description |
---|---|---|
static boolean |
allSatisfy(BooleanIterable iterable,
BooleanPredicate predicate) |
|
static boolean |
anySatisfy(BooleanIterable iterable,
BooleanPredicate predicate) |
|
static void |
appendString(BooleanIterable iterable,
java.lang.Appendable appendable,
java.lang.String start,
java.lang.String separator,
java.lang.String end) |
|
static <V,R extends java.util.Collection<V>> |
collect(BooleanIterable iterable,
BooleanToObjectFunction<? extends V> function,
R targetCollection) |
|
static int |
count(BooleanIterable iterable,
BooleanPredicate predicate) |
|
static boolean |
detectIfNone(BooleanIterable iterable,
BooleanPredicate predicate,
boolean ifNone) |
|
static void |
forEach(BooleanIterable iterable,
BooleanProcedure procedure) |
|
static <T> T |
injectInto(BooleanIterable iterable,
T injectedValue,
ObjectBooleanToObjectFunction<? super T,? extends T> function) |
|
static boolean |
isEmpty(BooleanIterable iterable) |
|
static boolean |
noneSatisfy(BooleanIterable iterable,
BooleanPredicate predicate) |
|
static boolean |
notEmpty(BooleanIterable iterable) |
|
static <R extends MutableBooleanCollection> |
reject(BooleanIterable iterable,
BooleanPredicate predicate,
R targetCollection) |
|
static <R extends MutableBooleanCollection> |
select(BooleanIterable iterable,
BooleanPredicate predicate,
R targetCollection) |
public static boolean isEmpty(BooleanIterable iterable)
public static boolean notEmpty(BooleanIterable iterable)
public static void forEach(BooleanIterable iterable, BooleanProcedure procedure)
public static <R extends MutableBooleanCollection> R select(BooleanIterable iterable, BooleanPredicate predicate, R targetCollection)
public static <R extends MutableBooleanCollection> R reject(BooleanIterable iterable, BooleanPredicate predicate, R targetCollection)
public static <V,R extends java.util.Collection<V>> R collect(BooleanIterable iterable, BooleanToObjectFunction<? extends V> function, R targetCollection)
public static boolean detectIfNone(BooleanIterable iterable, BooleanPredicate predicate, boolean ifNone)
public static int count(BooleanIterable iterable, BooleanPredicate predicate)
public static boolean anySatisfy(BooleanIterable iterable, BooleanPredicate predicate)
public static boolean allSatisfy(BooleanIterable iterable, BooleanPredicate predicate)
public static boolean noneSatisfy(BooleanIterable iterable, BooleanPredicate predicate)
public static void appendString(BooleanIterable iterable, java.lang.Appendable appendable, java.lang.String start, java.lang.String separator, java.lang.String end)
public static <T> T injectInto(BooleanIterable iterable, T injectedValue, ObjectBooleanToObjectFunction<? super T,? extends T> function)
Copyright © 2004–2017. All rights reserved.