BooleanIterable, BooleanValuesMap, MutableBooleanValuesMap, PrimitiveIterableByteBooleanHashMap, CharBooleanHashMap, DoubleBooleanHashMap, FloatBooleanHashMap, IntBooleanHashMap, LongBooleanHashMap, ShortBooleanHashMappublic abstract class AbstractMutableBooleanValuesMap extends AbstractBooleanIterable implements MutableBooleanValuesMap
| Constructor | Description | 
|---|---|
| AbstractMutableBooleanValuesMap() | 
| Modifier and Type | Method | Description | 
|---|---|---|
| boolean | allSatisfy(BooleanPredicate predicate) | Returns true if all of the elements in the BooleanIterable return true for the
 specified predicate, otherwise returns false. | 
| boolean | anySatisfy(BooleanPredicate predicate) | Returns true if any of the elements in the BooleanIterable return true for the
 specified predicate, otherwise returns false. | 
| void | appendString(Appendable appendable,
            String start,
            String separator,
            String end) | Prints a string representation of this collection onto the given  Appendable. | 
| <V> MutableBag<V> | collect(BooleanToObjectFunction<? extends V> function) | Returns a new collection with the results of applying the specified function on each element of the source
 collection. | 
| boolean | contains(boolean value) | Returns true if the value is contained in the BooleanIterable, and false if it is not. | 
| boolean | containsAll(BooleanIterable source) | Returns true if the all of the values specified in the source BooleanIterable are contained
 in the BooleanIterable, and false if they are not. | 
| int | count(BooleanPredicate predicate) | Returns a count of the number of elements in the BooleanIterable that return true for the
 specified predicate. | 
| boolean | detectIfNone(BooleanPredicate predicate,
            boolean value) | |
| void | each(BooleanProcedure procedure) | A synonym for forEach. | 
| void | forEach(BooleanProcedure procedure) | Applies the BooleanProcedure to each element in the BooleanIterable. | 
| void | forEachValue(BooleanProcedure procedure) | |
| <V> V | injectInto(V injectedValue,
          ObjectBooleanToObjectFunction<? super V,? extends V> function) | |
| boolean | isEmpty() | Returns true if this iterable has zero items. | 
| boolean | noneSatisfy(BooleanPredicate predicate) | Returns true if none of the elements in the BooleanIterable return true for the
 specified predicate, otherwise returns false. | 
| boolean | notEmpty() | The English equivalent of !this.isEmpty() | 
| MutableBooleanBag | reject(BooleanPredicate predicate) | Returns a new BooleanIterable with all of the elements in the BooleanIterable that
 return false for the specified predicate. | 
| MutableBooleanBag | select(BooleanPredicate predicate) | Returns a new BooleanIterable with all of the elements in the BooleanIterable that
 return true for the specified predicate. | 
| int | size() | Returns the number of items in this iterable. | 
| boolean[] | toArray() | Converts the BooleanIterable to a primitive boolean array. | 
asLazy, containsAll, toBag, toList, toSet, toStringasLazy, collect, collectBoolean, collectByte, collectChar, collectDouble, collectFloat, collectInt, collectLong, collectShort, containsAll, flatCollect, reject, select, toBag, toList, toSetcontainsValue, valuesbooleanIterator, clearequals, getClass, hashCode, notify, notifyAll, wait, wait, waitappendString, appendString, makeString, makeString, makeString, toStringpublic boolean contains(boolean value)
BooleanIterablecontains in interface BooleanIterablepublic boolean containsAll(BooleanIterable source)
BooleanIterablecontainsAll in interface BooleanIterablecontainsAll in class AbstractBooleanIterablepublic int size()
PrimitiveIterablesize in interface PrimitiveIterablepublic boolean isEmpty()
PrimitiveIterableisEmpty in interface PrimitiveIterablepublic boolean notEmpty()
PrimitiveIterablenotEmpty in interface PrimitiveIterablepublic void forEach(BooleanProcedure procedure)
BooleanIterableforEach in interface BooleanIterablepublic void each(BooleanProcedure procedure)
BooleanIterableeach in interface BooleanIterablepublic void forEachValue(BooleanProcedure procedure)
forEachValue in interface BooleanValuesMappublic <V> V injectInto(V injectedValue,
                        ObjectBooleanToObjectFunction<? super V,? extends V> function)
injectInto in interface BooleanIterablepublic 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 MutableBooleanBag select(BooleanPredicate predicate)
BooleanIterableselect in interface BooleanIterableselect in interface BooleanValuesMapselect in interface MutableBooleanValuesMappublic MutableBooleanBag reject(BooleanPredicate predicate)
BooleanIterablereject in interface BooleanIterablereject in interface BooleanValuesMapreject in interface MutableBooleanValuesMappublic <V> MutableBag<V> collect(BooleanToObjectFunction<? extends V> function)
BooleanIterablecollect in interface BooleanIterablecollect in interface BooleanValuesMapcollect in interface MutableBooleanValuesMappublic boolean detectIfNone(BooleanPredicate predicate, boolean value)
detectIfNone in interface BooleanIterablepublic int count(BooleanPredicate predicate)
BooleanIterablecount in interface BooleanIterablepublic boolean anySatisfy(BooleanPredicate predicate)
BooleanIterableanySatisfy in interface BooleanIterablepublic boolean allSatisfy(BooleanPredicate predicate)
BooleanIterableallSatisfy in interface BooleanIterablepublic boolean noneSatisfy(BooleanPredicate predicate)
BooleanIterablenoneSatisfy in interface BooleanIterablepublic boolean[] toArray()
BooleanIterabletoArray in interface BooleanIterableCopyright © 2004–2017. All rights reserved.