Class ImmutableFloatArrayStack
- java.lang.Object
-
- org.eclipse.collections.impl.stack.primitive.AbstractFloatStack
-
- org.eclipse.collections.impl.stack.immutable.primitive.ImmutableFloatArrayStack
-
- All Implemented Interfaces:
java.io.Serializable
,FloatIterable
,OrderedFloatIterable
,PrimitiveIterable
,FloatStack
,ImmutableFloatStack
final class ImmutableFloatArrayStack extends AbstractFloatStack implements ImmutableFloatStack, java.io.Serializable
ImmutableFloatArrayStack is the non-modifiable equivalent ofFloatArrayStack
. This file was automatically generated from template file immutablePrimitiveArrayStack.stg.- Since:
- 4.0.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description private static class
ImmutableFloatArrayStack.ImmutableFloatStackSerializationProxy
-
Field Summary
Fields Modifier and Type Field Description private FloatArrayList
delegate
private static long
serialVersionUID
-
Constructor Summary
Constructors Modifier Constructor Description private
ImmutableFloatArrayStack(float[] newElements)
private
ImmutableFloatArrayStack(FloatArrayList newElements)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description private void
checkNegativeCount(int count)
private void
checkOptimizedSize(int length)
<V> ImmutableStack<V>
collect(FloatToObjectFunction<? extends V> function)
Returns a new collection with the results of applying the specified function on each element of the source collection.protected FloatArrayList
getDelegate()
boolean
isEmpty()
Returns true if this iterable has zero items.static ImmutableFloatArrayStack
newStack(FloatIterable iterable)
static ImmutableFloatArrayStack
newStackFromTopToBottom(float... items)
static ImmutableFloatArrayStack
newStackFromTopToBottom(FloatIterable items)
static ImmutableFloatArrayStack
newStackWith(float... elements)
boolean
notEmpty()
The English equivalent of !this.isEmpty()ImmutableFloatStack
pop()
ImmutableFloatStack
pop(int count)
ImmutableFloatStack
push(float item)
ImmutableFloatStack
reject(FloatPredicate predicate)
Returns a new FloatIterable with all of the elements in the FloatIterable that return false for the specified predicate.ImmutableFloatStack
select(FloatPredicate predicate)
Returns a new FloatIterable with all of the elements in the FloatIterable that return true for the specified predicate.ImmutableFloatStack
toImmutable()
MutableFloatList
toSortedList()
private java.lang.Object
writeReplace()
-
Methods inherited from class org.eclipse.collections.impl.stack.primitive.AbstractFloatStack
allSatisfy, anySatisfy, appendString, appendString, appendString, asLazy, average, checkEmptyStack, checkPositiveValueForCount, checkSizeLessThanCount, chunk, contains, containsAll, containsAll, count, detectIfNone, each, equals, floatIterator, forEachWithIndex, getFirst, hashCode, indexOf, injectInto, injectIntoWithIndex, makeString, makeString, makeString, max, maxIfEmpty, median, min, minIfEmpty, noneSatisfy, peek, peek, peekAt, rangeCheck, size, sum, toArray, toArray, toBag, toList, toSet, toSortedArray, toString
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.eclipse.collections.api.FloatIterable
allSatisfy, anySatisfy, asLazy, average, averageIfEmpty, chunk, collect, collectBoolean, collectByte, collectChar, collectDouble, collectFloat, collectInt, collectLong, collectShort, contains, containsAll, containsAll, containsAny, containsAny, containsNone, containsNone, count, detectIfNone, each, flatCollect, floatIterator, forEach, injectInto, injectIntoBoolean, injectIntoByte, injectIntoChar, injectIntoDouble, injectIntoFloat, injectIntoInt, injectIntoLong, injectIntoShort, max, maxIfEmpty, median, medianIfEmpty, min, minIfEmpty, noneSatisfy, reduce, reduceIfEmpty, reject, select, sum, summaryStatistics, toArray, toArray, toBag, toList, toSet, toSortedArray, toSortedList, toSortedListBy, toSortedListBy
-
Methods inherited from interface org.eclipse.collections.api.stack.primitive.FloatStack
equals, hashCode, peek, peek, peekAt
-
Methods inherited from interface org.eclipse.collections.api.stack.primitive.ImmutableFloatStack
collectWithIndex, rejectWithIndex, selectWithIndex, tap
-
Methods inherited from interface org.eclipse.collections.api.ordered.primitive.OrderedFloatIterable
collectWithIndex, forEachWithIndex, getFirst, indexOf, injectIntoWithIndex, rejectWithIndex, selectWithIndex
-
Methods inherited from interface org.eclipse.collections.api.PrimitiveIterable
appendString, appendString, appendString, makeString, makeString, makeString, size, toString
-
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
delegate
private final FloatArrayList delegate
-
-
Constructor Detail
-
ImmutableFloatArrayStack
private ImmutableFloatArrayStack(float[] newElements)
-
ImmutableFloatArrayStack
private ImmutableFloatArrayStack(FloatArrayList newElements)
-
-
Method Detail
-
checkOptimizedSize
private void checkOptimizedSize(int length)
-
newStack
public static ImmutableFloatArrayStack newStack(FloatIterable iterable)
-
newStackWith
public static ImmutableFloatArrayStack newStackWith(float... elements)
-
newStackFromTopToBottom
public static ImmutableFloatArrayStack newStackFromTopToBottom(float... items)
-
newStackFromTopToBottom
public static ImmutableFloatArrayStack newStackFromTopToBottom(FloatIterable items)
-
getDelegate
protected FloatArrayList getDelegate()
- Specified by:
getDelegate
in classAbstractFloatStack
-
push
public ImmutableFloatStack push(float item)
- Specified by:
push
in interfaceImmutableFloatStack
-
pop
public ImmutableFloatStack pop()
- Specified by:
pop
in interfaceImmutableFloatStack
-
pop
public ImmutableFloatStack pop(int count)
- Specified by:
pop
in interfaceImmutableFloatStack
-
checkNegativeCount
private void checkNegativeCount(int count)
-
select
public ImmutableFloatStack select(FloatPredicate predicate)
Description copied from interface:FloatIterable
Returns a new FloatIterable with all of the elements in the FloatIterable that return true for the specified predicate.- Specified by:
select
in interfaceFloatIterable
- Specified by:
select
in interfaceFloatStack
- Specified by:
select
in interfaceImmutableFloatStack
- Specified by:
select
in interfaceOrderedFloatIterable
-
reject
public ImmutableFloatStack reject(FloatPredicate predicate)
Description copied from interface:FloatIterable
Returns a new FloatIterable with all of the elements in the FloatIterable that return false for the specified predicate.- Specified by:
reject
in interfaceFloatIterable
- Specified by:
reject
in interfaceFloatStack
- Specified by:
reject
in interfaceImmutableFloatStack
- Specified by:
reject
in interfaceOrderedFloatIterable
-
collect
public <V> ImmutableStack<V> collect(FloatToObjectFunction<? extends V> function)
Description copied from interface:FloatIterable
Returns 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:
collect
in interfaceFloatIterable
- Specified by:
collect
in interfaceFloatStack
- Specified by:
collect
in interfaceImmutableFloatStack
- Specified by:
collect
in interfaceOrderedFloatIterable
-
toImmutable
public ImmutableFloatStack toImmutable()
- Specified by:
toImmutable
in interfaceFloatStack
-
isEmpty
public boolean isEmpty()
Description copied from interface:PrimitiveIterable
Returns true if this iterable has zero items.- Specified by:
isEmpty
in interfacePrimitiveIterable
-
notEmpty
public boolean notEmpty()
Description copied from interface:PrimitiveIterable
The English equivalent of !this.isEmpty()- Specified by:
notEmpty
in interfacePrimitiveIterable
-
toSortedList
public MutableFloatList toSortedList()
- Specified by:
toSortedList
in interfaceFloatIterable
-
writeReplace
private java.lang.Object writeReplace()
-
-