Serializable, BooleanIterable, OrderedBooleanIterable, PrimitiveIterable, BooleanStack, MutableBooleanStackpublic class SynchronizedBooleanStack extends Object implements MutableBooleanStack, Serializable
MutableBooleanStack. It is imperative that the user manually synchronize on the collection when iterating over it using the
BooleanIterator, as per Collections.synchronizedCollection(Collection).
This file was automatically generated from template file synchronizedPrimitiveStack.stg.
MutableBooleanStack.asSynchronized(),
MutableStack.asSynchronized(),
Serialized Form| Constructor | Description |
|---|---|
SynchronizedBooleanStack(MutableBooleanStack stack) |
|
SynchronizedBooleanStack(MutableBooleanStack stack,
Object newLock) |
| 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) |
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() |
Returns a LazyBooleanIterable adapter wrapping the source BooleanIterable.
|
MutableBooleanStack |
asSynchronized() |
|
MutableBooleanStack |
asUnmodifiable() |
|
BooleanIterator |
booleanIterator() |
Must be called in a synchronized block.
|
RichIterable<BooleanIterable> |
chunk(int size) |
Partitions elements in fixed size chunks.
|
void |
clear() |
Clears the Stack
|
<V> MutableStack<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.
|
<V> MutableStack<V> |
collectWithIndex(BooleanIntToObjectFunction<? extends V> function) |
Returns a new MutableStack using results obtained by applying the specified function to each element
and its corresponding index.
|
<V,R extends Collection<V>> |
collectWithIndex(BooleanIntToObjectFunction<? extends V> function,
R target) |
Adds elements to the target Collection using results obtained by applying the specified function to each element
and its corresponding index.
|
boolean |
contains(boolean value) |
Returns true if the value is contained in the BooleanIterable, and false if it is not.
|
boolean |
containsAll(boolean... source) |
Returns true if the all of the values specified in the source array are contained
in the BooleanIterable, and false if they are 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 ifNone) |
|
void |
each(BooleanProcedure procedure) |
A synonym for forEach.
|
boolean |
equals(Object otherStack) |
Follows the same general contract as
StackIterable.equals(Object). |
void |
forEach(BooleanProcedure procedure) |
Applies the BooleanProcedure to each element in the BooleanIterable.
|
void |
forEachWithIndex(BooleanIntProcedure procedure) |
|
boolean |
getFirst() |
|
int |
hashCode() |
Follows the same general contract as
StackIterable.hashCode(). |
int |
indexOf(boolean value) |
|
<T> T |
injectInto(T injectedValue,
ObjectBooleanToObjectFunction<? super T,? extends T> function) |
|
<T> T |
injectIntoWithIndex(T injectedValue,
ObjectBooleanIntToObjectFunction<? 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 with the elements separated by the specified
separator and enclosed between the start and end strings.
|
MutableBooleanStack |
newEmpty() |
Creates a new empty mutable version of the same stack type.
|
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()
|
boolean |
peek() |
Returns the top of the stack.
|
BooleanList |
peek(int count) |
Returns BooleanList of the number of elements specified by the count, beginning with the top of the stack.
|
boolean |
peekAt(int index) |
Returns the element at the specified index.
|
boolean |
pop() |
Removes and returns the top element of the stack.
|
BooleanList |
pop(int count) |
Removes and returns a BooleanList of the number of elements specified by the count, beginning with the top of the stack.
|
void |
push(boolean item) |
Adds an item to the top of the stack.
|
MutableBooleanStack |
reject(BooleanPredicate predicate) |
Returns a new BooleanIterable with all of the elements in the BooleanIterable that
return false for the specified predicate.
|
MutableBooleanStack |
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.
|
MutableBooleanBag |
toBag() |
Converts the BooleanIterable to a new MutableBooleanBag.
|
ImmutableBooleanStack |
toImmutable() |
|
MutableBooleanList |
toList() |
Converts the BooleanIterable to a new MutableBooleanList.
|
MutableBooleanSet |
toSet() |
Converts the BooleanIterable to a new MutableBooleanSet.
|
String |
toString() |
Returns a string with the elements of this iterable separated by commas with spaces and
enclosed in square brackets.
|
collect, collectBoolean, collectByte, collectChar, collectDouble, collectFloat, collectInt, collectLong, collectShort, flatCollect, reduce, reduceIfEmpty, reject, selecttappublic SynchronizedBooleanStack(MutableBooleanStack stack)
public SynchronizedBooleanStack(MutableBooleanStack stack, Object newLock)
public void push(boolean item)
MutableBooleanStackpush in interface MutableBooleanStackpublic boolean pop()
MutableBooleanStackpop in interface MutableBooleanStackpublic BooleanList pop(int count)
MutableBooleanStackpop in interface MutableBooleanStackpublic boolean peek()
BooleanStackpeek in interface BooleanStackpublic BooleanList peek(int count)
BooleanStackpeek in interface BooleanStackpublic boolean peekAt(int index)
BooleanStackpeekAt in interface BooleanStackindex - the location to peek intopublic int size()
PrimitiveIterablesize in interface PrimitiveIterablepublic boolean isEmpty()
PrimitiveIterableisEmpty in interface PrimitiveIterablepublic boolean notEmpty()
PrimitiveIterablenotEmpty in interface PrimitiveIterablepublic void clear()
MutableBooleanStackclear in interface MutableBooleanStackpublic boolean contains(boolean value)
BooleanIterablecontains in interface BooleanIterablepublic boolean containsAll(boolean... source)
BooleanIterablecontainsAll in interface BooleanIterablepublic boolean containsAll(BooleanIterable source)
BooleanIterablecontainsAll in interface BooleanIterablepublic BooleanIterator booleanIterator()
booleanIterator in interface BooleanIterablepublic void forEach(BooleanProcedure procedure)
BooleanIterableforEach in interface BooleanIterablepublic void each(BooleanProcedure procedure)
BooleanIterableeach 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 detectIfNone(BooleanPredicate predicate, boolean ifNone)
detectIfNone in interface BooleanIterablepublic MutableBooleanStack select(BooleanPredicate predicate)
BooleanIterableselect in interface BooleanIterableselect in interface BooleanStackselect in interface MutableBooleanStackselect in interface OrderedBooleanIterablepublic MutableBooleanStack reject(BooleanPredicate predicate)
BooleanIterablereject in interface BooleanIterablereject in interface BooleanStackreject in interface MutableBooleanStackreject in interface OrderedBooleanIterablepublic <V> MutableStack<V> collect(BooleanToObjectFunction<? extends V> function)
BooleanIterablecollect in interface BooleanIterablecollect in interface BooleanStackcollect in interface MutableBooleanStackcollect in interface OrderedBooleanIterablepublic boolean[] toArray()
BooleanIterabletoArray in interface BooleanIterablepublic String toString()
PrimitiveIterable
Assert.assertEquals("[]", IntLists.mutable.empty().toString());
Assert.assertEquals("[1]", IntLists.mutable.with(1).toString());
Assert.assertEquals("[1, 2, 3]", IntLists.mutable.with(1, 2, 3).toString());
toString in interface PrimitiveIterabletoString in class ObjectAbstractCollection.toString()public 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 MutableBooleanList toList()
BooleanIterabletoList in interface BooleanIterablepublic MutableBooleanSet toSet()
BooleanIterabletoSet in interface BooleanIterablepublic MutableBooleanBag toBag()
BooleanIterabletoBag in interface BooleanIterablepublic boolean equals(Object otherStack)
BooleanStackStackIterable.equals(Object).equals in interface BooleanStackequals in class Objectpublic int hashCode()
BooleanStackStackIterable.hashCode().hashCode in interface BooleanStackhashCode in class Objectpublic LazyBooleanIterable asLazy()
BooleanIterableasLazy in interface BooleanIterablepublic MutableBooleanStack asUnmodifiable()
asUnmodifiable in interface MutableBooleanStackpublic MutableBooleanStack asSynchronized()
asSynchronized in interface MutableBooleanStackpublic ImmutableBooleanStack toImmutable()
toImmutable in interface BooleanStackpublic MutableBooleanStack newEmpty()
MutableBooleanStacknewEmpty in interface MutableBooleanStackpublic <T> T injectInto(T injectedValue,
ObjectBooleanToObjectFunction<? super T,? extends T> function)
injectInto in interface BooleanIterablepublic RichIterable<BooleanIterable> chunk(int size)
BooleanIterablechunk in interface BooleanIterablesize - the number of elements per chunkRichIterable containing BooleanIterables of size size, except the last will be
truncated if the elements don't divide evenly.public boolean getFirst()
getFirst in interface OrderedBooleanIterablepublic int indexOf(boolean value)
indexOf in interface OrderedBooleanIterablepublic <T> T injectIntoWithIndex(T injectedValue,
ObjectBooleanIntToObjectFunction<? super T,? extends T> function)
injectIntoWithIndex in interface OrderedBooleanIterablepublic void forEachWithIndex(BooleanIntProcedure procedure)
forEachWithIndex in interface OrderedBooleanIterablepublic <V> MutableStack<V> collectWithIndex(BooleanIntToObjectFunction<? extends V> function)
collectWithIndex in interface BooleanStackcollectWithIndex in interface MutableBooleanStackcollectWithIndex in interface OrderedBooleanIterablepublic <V,R extends Collection<V>> R collectWithIndex(BooleanIntToObjectFunction<? extends V> function, R target)
collectWithIndex in interface OrderedBooleanIterableCopyright © 2004–2019. All rights reserved.