Class SynchronizedShortStack
java.lang.Object
org.eclipse.collections.impl.stack.mutable.primitive.SynchronizedShortStack
- All Implemented Interfaces:
Serializable,OrderedShortIterable,PrimitiveIterable,ShortIterable,MutableShortStack,ShortStack
public class SynchronizedShortStack extends Object implements MutableShortStack, Serializable
A synchronized view of a
MutableShortStack. It is imperative that the user manually synchronize on the collection when iterating over it using the
ShortIterator, as per Collections.synchronizedCollection(Collection).
This file was automatically generated from template file synchronizedPrimitiveStack.stg.
- Since:
- 3.1.
- See Also:
MutableShortStack.asSynchronized(),MutableStack.asSynchronized(), Serialized Form
-
Constructor Summary
Constructors Constructor Description SynchronizedShortStack(MutableShortStack stack)SynchronizedShortStack(MutableShortStack stack, Object newLock) -
Method Summary
Modifier and Type Method Description booleanallSatisfy(ShortPredicate predicate)Returns true if all of the elements in the ShortIterable return true for the specified predicate, otherwise returns false.booleananySatisfy(ShortPredicate predicate)Returns true if any of the elements in the ShortIterable return true for the specified predicate, otherwise returns false.voidappendString(Appendable appendable)Prints a string representation of this collection onto the givenAppendable.voidappendString(Appendable appendable, String separator)Prints a string representation of this collection onto the givenAppendable.voidappendString(Appendable appendable, String start, String separator, String end)Prints a string representation of this collection onto the givenAppendable.LazyShortIterableasLazy()Returns a LazyShortIterable adapter wrapping the source ShortIterable.MutableShortStackasSynchronized()MutableShortStackasUnmodifiable()doubleaverage()RichIterable<ShortIterable>chunk(int size)Partitions elements in fixed size chunks.voidclear()Clears the Stack<V> MutableStack<V>collect(ShortToObjectFunction<? 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(ShortIntToObjectFunction<? 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>>
RcollectWithIndex(ShortIntToObjectFunction<? 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.booleancontains(short value)Returns true if the value is contained in the ShortIterable, and false if it is not.booleancontainsAll(short... source)Returns true if the all of the values specified in the source array are contained in the ShortIterable, and false if they are not.booleancontainsAll(ShortIterable source)Returns true if the all of the values specified in the source ShortIterable are contained in the ShortIterable, and false if they are not.intcount(ShortPredicate predicate)Returns a count of the number of elements in the ShortIterable that return true for the specified predicate.shortdetectIfNone(ShortPredicate predicate, short ifNone)voideach(ShortProcedure procedure)A synonym for forEach.booleanequals(Object otherStack)Follows the same general contract asStackIterable.equals(Object).voidforEach(ShortProcedure procedure)Applies the ShortProcedure to each element in the ShortIterable.voidforEachWithIndex(ShortIntProcedure procedure)shortgetFirst()inthashCode()Follows the same general contract asStackIterable.hashCode().intindexOf(short value)<T> TinjectInto(T injectedValue, ObjectShortToObjectFunction<? super T,? extends T> function)<T> TinjectIntoWithIndex(T injectedValue, ObjectShortIntToObjectFunction<? super T,? extends T> function)booleanisEmpty()Returns true if this iterable has zero items.StringmakeString()Returns a string representation of this collection by delegating toPrimitiveIterable.makeString(String)and defaulting the separator parameter to the characters", "(comma and space).StringmakeString(String separator)Returns a string representation of this collection by delegating toPrimitiveIterable.makeString(String, String, String)and defaulting the start and end parameters to""(the empty String).StringmakeString(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.shortmax()shortmaxIfEmpty(short defaultValue)doublemedian()shortmin()shortminIfEmpty(short defaultValue)MutableShortStacknewEmpty()Creates a new empty mutable version of the same stack type.booleannoneSatisfy(ShortPredicate predicate)Returns true if none of the elements in the ShortIterable return true for the specified predicate, otherwise returns false.booleannotEmpty()The English equivalent of !this.isEmpty()shortpeek()Returns the top of the stack.ShortListpeek(int count)Returns ShortList of the number of elements specified by the count, beginning with the top of the stack.shortpeekAt(int index)Returns the element at the specified index.shortpop()Removes and returns the top element of the stack.ShortListpop(int count)Removes and returns a ShortList of the number of elements specified by the count, beginning with the top of the stack.voidpush(short item)Adds an item to the top of the stack.MutableShortStackreject(ShortPredicate predicate)Returns a new ShortIterable with all of the elements in the ShortIterable that return false for the specified predicate.MutableShortStackselect(ShortPredicate predicate)Returns a new ShortIterable with all of the elements in the ShortIterable that return true for the specified predicate.ShortIteratorshortIterator()Must be called in a synchronized block.intsize()Returns the number of items in this iterable.longsum()short[]toArray()Converts the ShortIterable to a primitive short array.short[]toArray(short[] target)Converts the ShortIterable to a primitive short array.MutableShortBagtoBag()Converts the ShortIterable to a new MutableShortBag.ImmutableShortStacktoImmutable()MutableShortListtoList()Converts the ShortIterable to a new MutableShortList.MutableShortSettoSet()Converts the ShortIterable to a new MutableShortSet.short[]toSortedArray()MutableShortListtoSortedList()StringtoString()Returns a string with the elements of this iterable separated by commas with spaces and enclosed in square brackets.Methods inherited from interface org.eclipse.collections.api.ShortIterable
averageIfEmpty, collect, collectBoolean, collectByte, collectChar, collectDouble, collectFloat, collectInt, collectLong, collectShort, flatCollect, medianIfEmpty, reduce, reduceIfEmpty, reject, select, summaryStatistics
-
Constructor Details
-
Method Details
-
push
public void push(short item)Description copied from interface:MutableShortStackAdds an item to the top of the stack.- Specified by:
pushin interfaceMutableShortStack
-
pop
public short pop()Description copied from interface:MutableShortStackRemoves and returns the top element of the stack.- Specified by:
popin interfaceMutableShortStack
-
pop
Description copied from interface:MutableShortStackRemoves and returns a ShortList of the number of elements specified by the count, beginning with the top of the stack.- Specified by:
popin interfaceMutableShortStack
-
peek
public short peek()Description copied from interface:ShortStackReturns the top of the stack.- Specified by:
peekin interfaceShortStack
-
peek
Description copied from interface:ShortStackReturns ShortList of the number of elements specified by the count, beginning with the top of the stack.- Specified by:
peekin interfaceShortStack
-
peekAt
public short peekAt(int index)Description copied from interface:ShortStackReturns the element at the specified index.- Specified by:
peekAtin interfaceShortStack- Parameters:
index- the location to peek into
-
size
public int size()Description copied from interface:PrimitiveIterableReturns the number of items in this iterable.- Specified by:
sizein interfacePrimitiveIterable
-
isEmpty
public boolean isEmpty()Description copied from interface:PrimitiveIterableReturns true if this iterable has zero items.- Specified by:
isEmptyin interfacePrimitiveIterable
-
notEmpty
public boolean notEmpty()Description copied from interface:PrimitiveIterableThe English equivalent of !this.isEmpty()- Specified by:
notEmptyin interfacePrimitiveIterable
-
clear
public void clear()Description copied from interface:MutableShortStackClears the Stack- Specified by:
clearin interfaceMutableShortStack
-
contains
public boolean contains(short value)Description copied from interface:ShortIterableReturns true if the value is contained in the ShortIterable, and false if it is not.- Specified by:
containsin interfaceShortIterable
-
containsAll
public boolean containsAll(short... source)Description copied from interface:ShortIterableReturns true if the all of the values specified in the source array are contained in the ShortIterable, and false if they are not.- Specified by:
containsAllin interfaceShortIterable
-
containsAll
Description copied from interface:ShortIterableReturns true if the all of the values specified in the source ShortIterable are contained in the ShortIterable, and false if they are not.- Specified by:
containsAllin interfaceShortIterable
-
shortIterator
Must be called in a synchronized block.- Specified by:
shortIteratorin interfaceShortIterable
-
forEach
Description copied from interface:ShortIterableApplies the ShortProcedure to each element in the ShortIterable.- Specified by:
forEachin interfaceShortIterable
-
each
Description copied from interface:ShortIterableA synonym for forEach.- Specified by:
eachin interfaceShortIterable- Since:
- 7.0.
-
count
Description copied from interface:ShortIterableReturns a count of the number of elements in the ShortIterable that return true for the specified predicate.- Specified by:
countin interfaceShortIterable
-
anySatisfy
Description copied from interface:ShortIterableReturns true if any of the elements in the ShortIterable return true for the specified predicate, otherwise returns false.- Specified by:
anySatisfyin interfaceShortIterable
-
allSatisfy
Description copied from interface:ShortIterableReturns true if all of the elements in the ShortIterable return true for the specified predicate, otherwise returns false.- Specified by:
allSatisfyin interfaceShortIterable
-
noneSatisfy
Description copied from interface:ShortIterableReturns true if none of the elements in the ShortIterable return true for the specified predicate, otherwise returns false.- Specified by:
noneSatisfyin interfaceShortIterable
-
detectIfNone
- Specified by:
detectIfNonein interfaceShortIterable
-
select
Description copied from interface:ShortIterableReturns a new ShortIterable with all of the elements in the ShortIterable that return true for the specified predicate.- Specified by:
selectin interfaceMutableShortStack- Specified by:
selectin interfaceOrderedShortIterable- Specified by:
selectin interfaceShortIterable- Specified by:
selectin interfaceShortStack
-
reject
Description copied from interface:ShortIterableReturns a new ShortIterable with all of the elements in the ShortIterable that return false for the specified predicate.- Specified by:
rejectin interfaceMutableShortStack- Specified by:
rejectin interfaceOrderedShortIterable- Specified by:
rejectin interfaceShortIterable- Specified by:
rejectin interfaceShortStack
-
collect
Description copied from interface:ShortIterableReturns a new collection with the results of applying the specified function on each element of the source collection. This method is also commonly called transform or map.- Specified by:
collectin interfaceMutableShortStack- Specified by:
collectin interfaceOrderedShortIterable- Specified by:
collectin interfaceShortIterable- Specified by:
collectin interfaceShortStack
-
sum
public long sum()- Specified by:
sumin interfaceShortIterable
-
max
public short max()- Specified by:
maxin interfaceShortIterable
-
min
public short min()- Specified by:
minin interfaceShortIterable
-
minIfEmpty
public short minIfEmpty(short defaultValue)- Specified by:
minIfEmptyin interfaceShortIterable
-
maxIfEmpty
public short maxIfEmpty(short defaultValue)- Specified by:
maxIfEmptyin interfaceShortIterable
-
average
public double average()- Specified by:
averagein interfaceShortIterable
-
median
public double median()- Specified by:
medianin interfaceShortIterable
-
toSortedList
- Specified by:
toSortedListin interfaceShortIterable
-
toSortedArray
public short[] toSortedArray()- Specified by:
toSortedArrayin interfaceShortIterable
-
toArray
public short[] toArray()Description copied from interface:ShortIterableConverts the ShortIterable to a primitive short array.- Specified by:
toArrayin interfaceShortIterable
-
toArray
public short[] toArray(short[] target)Description copied from interface:ShortIterableConverts the ShortIterable to a primitive short array. If the collection fits into the provided array it is used to store its elements and is returned from the method, otherwise a new array of the appropriate size is allocated and returned. If the iterable is empty, the target array is returned unchanged.- Specified by:
toArrayin interfaceShortIterable
-
toString
Description copied from interface:PrimitiveIterableReturns a string with the elements of this iterable separated by commas with spaces and enclosed in square brackets.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());- Specified by:
toStringin interfacePrimitiveIterable- Overrides:
toStringin classObject- Returns:
- a string representation of this PrimitiveIterable
- See Also:
AbstractCollection.toString()
-
makeString
Description copied from interface:PrimitiveIterableReturns a string representation of this collection by delegating toPrimitiveIterable.makeString(String)and defaulting the separator parameter to the characters", "(comma and space).- Specified by:
makeStringin interfacePrimitiveIterable- Returns:
- a string representation of this collection.
-
makeString
Description copied from interface:PrimitiveIterableReturns a string representation of this collection by delegating toPrimitiveIterable.makeString(String, String, String)and defaulting the start and end parameters to""(the empty String).- Specified by:
makeStringin interfacePrimitiveIterable- Returns:
- a string representation of this collection.
-
makeString
Description copied from interface:PrimitiveIterableReturns a string representation of this collection with the elements separated by the specified separator and enclosed between the start and end strings.- Specified by:
makeStringin interfacePrimitiveIterable- Returns:
- a string representation of this collection.
-
appendString
Description copied from interface:PrimitiveIterablePrints a string representation of this collection onto the givenAppendable. Prints the string returned byPrimitiveIterable.makeString().- Specified by:
appendStringin interfacePrimitiveIterable
-
appendString
Description copied from interface:PrimitiveIterablePrints a string representation of this collection onto the givenAppendable. Prints the string returned byPrimitiveIterable.makeString(String).- Specified by:
appendStringin interfacePrimitiveIterable
-
appendString
Description copied from interface:PrimitiveIterablePrints a string representation of this collection onto the givenAppendable. Prints the string returned byPrimitiveIterable.makeString(String, String, String).- Specified by:
appendStringin interfacePrimitiveIterable
-
toList
Description copied from interface:ShortIterableConverts the ShortIterable to a new MutableShortList.- Specified by:
toListin interfaceShortIterable
-
toSet
Description copied from interface:ShortIterableConverts the ShortIterable to a new MutableShortSet.- Specified by:
toSetin interfaceShortIterable
-
toBag
Description copied from interface:ShortIterableConverts the ShortIterable to a new MutableShortBag.- Specified by:
toBagin interfaceShortIterable
-
equals
Description copied from interface:ShortStackFollows the same general contract asStackIterable.equals(Object).- Specified by:
equalsin interfaceShortStack- Overrides:
equalsin classObject
-
hashCode
public int hashCode()Description copied from interface:ShortStackFollows the same general contract asStackIterable.hashCode().- Specified by:
hashCodein interfaceShortStack- Overrides:
hashCodein classObject
-
asLazy
Description copied from interface:ShortIterableReturns a LazyShortIterable adapter wrapping the source ShortIterable.- Specified by:
asLazyin interfaceShortIterable
-
asUnmodifiable
- Specified by:
asUnmodifiablein interfaceMutableShortStack
-
asSynchronized
- Specified by:
asSynchronizedin interfaceMutableShortStack
-
toImmutable
- Specified by:
toImmutablein interfaceShortStack
-
newEmpty
Description copied from interface:MutableShortStackCreates a new empty mutable version of the same stack type.- Specified by:
newEmptyin interfaceMutableShortStack- Since:
- 9.2.
-
injectInto
public <T> T injectInto(T injectedValue, ObjectShortToObjectFunction<? super T,? extends T> function)- Specified by:
injectIntoin interfaceShortIterable
-
chunk
Description copied from interface:ShortIterablePartitions elements in fixed size chunks.- Specified by:
chunkin interfaceShortIterable- Parameters:
size- the number of elements per chunk- Returns:
- A
RichIterablecontainingShortIterables of sizesize, except the last will be truncated if the elements don't divide evenly.
-
getFirst
public short getFirst()- Specified by:
getFirstin interfaceOrderedShortIterable
-
indexOf
public int indexOf(short value)- Specified by:
indexOfin interfaceOrderedShortIterable
-
injectIntoWithIndex
public <T> T injectIntoWithIndex(T injectedValue, ObjectShortIntToObjectFunction<? super T,? extends T> function)- Specified by:
injectIntoWithIndexin interfaceOrderedShortIterable
-
forEachWithIndex
- Specified by:
forEachWithIndexin interfaceOrderedShortIterable
-
collectWithIndex
Returns a new MutableStack using results obtained by applying the specified function to each element and its corresponding index.- Specified by:
collectWithIndexin interfaceMutableShortStack- Specified by:
collectWithIndexin interfaceOrderedShortIterable- Specified by:
collectWithIndexin interfaceShortStack- Since:
- 9.1.
-
collectWithIndex
public <V, R extends Collection<V>> R collectWithIndex(ShortIntToObjectFunction<? 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.- Specified by:
collectWithIndexin interfaceOrderedShortIterable- Since:
- 9.1.
-