Class BooleanIterableIterate
- java.lang.Object
-
- org.eclipse.collections.impl.utility.internal.primitive.BooleanIterableIterate
-
public final class BooleanIterableIterate extends java.lang.Object
This file was automatically generated from template file primitiveIterableIterate.stg.- Since:
- 5.0
-
-
Constructor Summary
Constructors Modifier Constructor Description private
BooleanIterableIterate()
-
Method Summary
All Methods Static Methods Concrete Methods 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>>
Rcollect(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>
Rreject(BooleanIterable iterable, BooleanPredicate predicate, R targetCollection)
static <R extends MutableBooleanCollection>
Rselect(BooleanIterable iterable, BooleanPredicate predicate, R targetCollection)
private static <T> java.lang.String
stringValueOfItem(BooleanIterable iterable, T item)
-
-
-
Method Detail
-
isEmpty
public static boolean isEmpty(BooleanIterable iterable)
-
notEmpty
public static boolean notEmpty(BooleanIterable iterable)
-
forEach
public static void forEach(BooleanIterable iterable, BooleanProcedure procedure)
-
select
public static <R extends MutableBooleanCollection> R select(BooleanIterable iterable, BooleanPredicate predicate, R targetCollection)
-
reject
public static <R extends MutableBooleanCollection> R reject(BooleanIterable iterable, BooleanPredicate predicate, R targetCollection)
-
collect
public static <V,R extends java.util.Collection<V>> R collect(BooleanIterable iterable, BooleanToObjectFunction<? extends V> function, R targetCollection)
-
detectIfNone
public static boolean detectIfNone(BooleanIterable iterable, BooleanPredicate predicate, boolean ifNone)
-
count
public static int count(BooleanIterable iterable, BooleanPredicate predicate)
-
anySatisfy
public static boolean anySatisfy(BooleanIterable iterable, BooleanPredicate predicate)
-
allSatisfy
public static boolean allSatisfy(BooleanIterable iterable, BooleanPredicate predicate)
-
noneSatisfy
public static boolean noneSatisfy(BooleanIterable iterable, BooleanPredicate predicate)
-
appendString
public static void appendString(BooleanIterable iterable, java.lang.Appendable appendable, java.lang.String start, java.lang.String separator, java.lang.String end)
-
injectInto
public static <T> T injectInto(BooleanIterable iterable, T injectedValue, ObjectBooleanToObjectFunction<? super T,? extends T> function)
-
stringValueOfItem
private static <T> java.lang.String stringValueOfItem(BooleanIterable iterable, T item)
-
-