public abstract class AbstractLazyBooleanIterable extends Object implements LazyBooleanIterable
| Constructor and Description |
|---|
AbstractLazyBooleanIterable() |
| Modifier and Type | Method and Description |
|---|---|
boolean |
allSatisfy(BooleanPredicate predicate) |
boolean |
anySatisfy(BooleanPredicate predicate) |
void |
appendString(Appendable appendable)
Prints a string representation of this collection onto the given
Appendable. |
void |
appendString(Appendable appendable,
String separator)
Prints a string representation of this collection onto the given
Appendable. |
void |
appendString(Appendable appendable,
String start,
String separator,
String end)
Prints a string representation of this collection onto the given
Appendable. |
LazyBooleanIterable |
asLazy() |
<V> LazyIterable<V> |
collect(BooleanToObjectFunction<? extends V> function) |
LazyBooleanIterable |
collectBoolean(BooleanToBooleanFunction function) |
LazyByteIterable |
collectByte(BooleanToByteFunction function) |
LazyCharIterable |
collectChar(BooleanToCharFunction function) |
LazyDoubleIterable |
collectDouble(BooleanToDoubleFunction function) |
LazyFloatIterable |
collectFloat(BooleanToFloatFunction function) |
LazyIntIterable |
collectInt(BooleanToIntFunction function) |
LazyLongIterable |
collectLong(BooleanToLongFunction function) |
LazyShortIterable |
collectShort(BooleanToShortFunction function) |
boolean |
contains(boolean value) |
boolean |
containsAll(boolean... source) |
boolean |
containsAll(BooleanIterable source) |
int |
count(BooleanPredicate predicate) |
boolean |
detectIfNone(BooleanPredicate predicate,
boolean ifNone) |
void |
forEach(BooleanProcedure procedure) |
<T> T |
injectInto(T injectedValue,
ObjectBooleanToObjectFunction<? super T,? extends T> function) |
boolean |
isEmpty()
Returns true if this iterable has zero items.
|
String |
makeString()
Returns a string representation of this collection by delegating to
PrimitiveIterable.makeString(String) and defaulting
the separator parameter to the characters ", " (comma and space). |
String |
makeString(String separator)
Returns a string representation of this collection by delegating to
PrimitiveIterable.makeString(String, String, String)
and defaulting the start and end parameters to "" (the empty String). |
String |
makeString(String start,
String separator,
String end)
Returns a string representation of this collection.
|
boolean |
noneSatisfy(BooleanPredicate predicate) |
boolean |
notEmpty()
The English equivalent of !this.isEmpty()
|
LazyBooleanIterable |
reject(BooleanPredicate predicate) |
LazyBooleanIterable |
select(BooleanPredicate predicate) |
int |
size()
Returns the number of items in this iterable.
|
boolean[] |
toArray() |
MutableBooleanBag |
toBag() |
MutableBooleanList |
toList() |
MutableBooleanSet |
toSet() |
String |
toString()
Returns a string representation of this PrimitiveIterable.
|
equals, getClass, hashCode, notify, notifyAll, wait, wait, waitbooleanIterator, eachpublic void forEach(BooleanProcedure procedure)
forEach in interface BooleanIterablepublic int size()
PrimitiveIterablesize in interface PrimitiveIterablepublic String toString()
PrimitiveIterabletoString in interface PrimitiveIterabletoString in class Objectpublic boolean isEmpty()
PrimitiveIterableisEmpty in interface PrimitiveIterablepublic boolean notEmpty()
PrimitiveIterablenotEmpty in interface PrimitiveIterablepublic String makeString()
PrimitiveIterablePrimitiveIterable.makeString(String) and defaulting
the separator parameter to the characters ", " (comma and space).makeString in interface PrimitiveIterablepublic String makeString(String separator)
PrimitiveIterablePrimitiveIterable.makeString(String, String, String)
and defaulting the start and end parameters to "" (the empty String).makeString in interface PrimitiveIterablepublic String makeString(String start, String separator, String end)
PrimitiveIterablemakeString in interface PrimitiveIterablepublic void appendString(Appendable appendable)
PrimitiveIterableAppendable. Prints the string returned
by PrimitiveIterable.makeString().appendString in interface PrimitiveIterablepublic void appendString(Appendable appendable, String separator)
PrimitiveIterableAppendable. Prints the string returned
by PrimitiveIterable.makeString(String).appendString in interface PrimitiveIterablepublic void appendString(Appendable appendable, String start, String separator, String end)
PrimitiveIterableAppendable. Prints the string returned
by PrimitiveIterable.makeString(String, String, String).appendString in interface PrimitiveIterablepublic boolean contains(boolean value)
contains in interface BooleanIterablepublic boolean containsAll(boolean... source)
containsAll in interface BooleanIterablepublic boolean containsAll(BooleanIterable source)
containsAll in interface BooleanIterablepublic LazyBooleanIterable select(BooleanPredicate predicate)
select in interface BooleanIterableselect in interface LazyBooleanIterablepublic LazyBooleanIterable reject(BooleanPredicate predicate)
reject in interface BooleanIterablereject in interface LazyBooleanIterablepublic <V> LazyIterable<V> collect(BooleanToObjectFunction<? extends V> function)
collect in interface BooleanIterablecollect in interface LazyBooleanIterablepublic LazyBooleanIterable collectBoolean(BooleanToBooleanFunction function)
collectBoolean in interface LazyBooleanIterablepublic LazyByteIterable collectByte(BooleanToByteFunction function)
collectByte in interface LazyBooleanIterablepublic LazyCharIterable collectChar(BooleanToCharFunction function)
collectChar in interface LazyBooleanIterablepublic LazyShortIterable collectShort(BooleanToShortFunction function)
collectShort in interface LazyBooleanIterablepublic LazyIntIterable collectInt(BooleanToIntFunction function)
collectInt in interface LazyBooleanIterablepublic LazyFloatIterable collectFloat(BooleanToFloatFunction function)
collectFloat in interface LazyBooleanIterablepublic LazyLongIterable collectLong(BooleanToLongFunction function)
collectLong in interface LazyBooleanIterablepublic LazyDoubleIterable collectDouble(BooleanToDoubleFunction function)
collectDouble in interface LazyBooleanIterablepublic boolean detectIfNone(BooleanPredicate predicate, boolean ifNone)
detectIfNone in interface BooleanIterablepublic int count(BooleanPredicate predicate)
count in interface BooleanIterablepublic boolean anySatisfy(BooleanPredicate predicate)
anySatisfy in interface BooleanIterablepublic boolean allSatisfy(BooleanPredicate predicate)
allSatisfy in interface BooleanIterablepublic boolean noneSatisfy(BooleanPredicate predicate)
noneSatisfy in interface BooleanIterablepublic <T> T injectInto(T injectedValue,
ObjectBooleanToObjectFunction<? super T,? extends T> function)
injectInto in interface BooleanIterablepublic boolean[] toArray()
toArray in interface BooleanIterablepublic MutableBooleanList toList()
toList in interface BooleanIterablepublic MutableBooleanSet toSet()
toSet in interface BooleanIterablepublic MutableBooleanBag toBag()
toBag in interface BooleanIterablepublic LazyBooleanIterable asLazy()
asLazy in interface BooleanIterableCopyright © 2004–2016. All rights reserved.