Uses of Interface
org.eclipse.collections.api.partition.stack.PartitionImmutableStack
-
Packages that use PartitionImmutableStack Package Description org.eclipse.collections.api.partition.stack This package contains interfaces forPartitionStack
.org.eclipse.collections.api.stack This package contains interfaces for stack API.org.eclipse.collections.impl.partition.stack This package contains implementations of thePartitionStack
interface.org.eclipse.collections.impl.stack.immutable This package contains implementations of theImmutableStack
interface. -
-
Uses of PartitionImmutableStack in org.eclipse.collections.api.partition.stack
Methods in org.eclipse.collections.api.partition.stack that return PartitionImmutableStack Modifier and Type Method Description PartitionImmutableStack<T>
PartitionMutableStack. toImmutable()
-
Uses of PartitionImmutableStack in org.eclipse.collections.api.stack
Methods in org.eclipse.collections.api.stack that return PartitionImmutableStack Modifier and Type Method Description PartitionImmutableStack<T>
ImmutableStack. partition(Predicate<? super T> predicate)
PartitionImmutableStack<T>
ImmutableStack. partitionWhile(Predicate<? super T> predicate)
<P> PartitionImmutableStack<T>
ImmutableStack. partitionWith(Predicate2<? super T,? super P> predicate, P parameter)
-
Uses of PartitionImmutableStack in org.eclipse.collections.impl.partition.stack
Classes in org.eclipse.collections.impl.partition.stack that implement PartitionImmutableStack Modifier and Type Class Description class
PartitionImmutableStackImpl<T>
Methods in org.eclipse.collections.impl.partition.stack that return PartitionImmutableStack Modifier and Type Method Description PartitionImmutableStack<T>
PartitionArrayStack. toImmutable()
-
Uses of PartitionImmutableStack in org.eclipse.collections.impl.stack.immutable
Methods in org.eclipse.collections.impl.stack.immutable that return PartitionImmutableStack Modifier and Type Method Description PartitionImmutableStack<T>
ImmutableArrayStack. partition(Predicate<? super T> predicate)
Deprecated.PartitionImmutableStack<T>
ImmutableEmptyStack. partition(Predicate<? super T> predicate)
PartitionImmutableStack<T>
ImmutableNotEmptyStack. partition(Predicate<? super T> predicate)
PartitionImmutableStack<T>
ImmutableArrayStack. partitionWhile(Predicate<? super T> predicate)
Deprecated.PartitionImmutableStack<T>
ImmutableEmptyStack. partitionWhile(Predicate<? super T> predicate)
PartitionImmutableStack<T>
ImmutableNotEmptyStack. partitionWhile(Predicate<? super T> predicate)
<P> PartitionImmutableStack<T>
ImmutableArrayStack. partitionWith(Predicate2<? super T,? super P> predicate, P parameter)
Deprecated.<P> PartitionImmutableStack<T>
ImmutableEmptyStack. partitionWith(Predicate2<? super T,? super P> predicate, P parameter)
<P> PartitionImmutableStack<T>
ImmutableNotEmptyStack. partitionWith(Predicate2<? super T,? super P> predicate, P parameter)
-