Class BooleanIterableIterate
- java.lang.Object
-
- org.eclipse.collections.impl.utility.internal.primitive.BooleanIterableIterate
-
public final class BooleanIterableIterate extends java.lang.ObjectThis file was automatically generated from template file primitiveIterableIterate.stg.- Since:
- 5.0
-
-
Constructor Summary
Constructors Modifier Constructor Description privateBooleanIterableIterate()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static booleanallSatisfy(BooleanIterable iterable, BooleanPredicate predicate)static booleananySatisfy(BooleanIterable iterable, BooleanPredicate predicate)static voidappendString(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 intcount(BooleanIterable iterable, BooleanPredicate predicate)static booleandetectIfNone(BooleanIterable iterable, BooleanPredicate predicate, boolean ifNone)static voidforEach(BooleanIterable iterable, BooleanProcedure procedure)static <T> TinjectInto(BooleanIterable iterable, T injectedValue, ObjectBooleanToObjectFunction<? super T,? extends T> function)static booleanisEmpty(BooleanIterable iterable)static booleannoneSatisfy(BooleanIterable iterable, BooleanPredicate predicate)static booleannotEmpty(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.StringstringValueOfItem(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)
-
-