public interface org.eclipse.collections.api.bag.ParallelBag<T> extends org.eclipse.collections.api.ParallelIterable<T>
minor version: 0
major version: 59
flags: flags: (0x0601) ACC_PUBLIC, ACC_INTERFACE, ACC_ABSTRACT
this_class: org.eclipse.collections.api.bag.ParallelBag
super_class: java.lang.Object
{
public abstract void forEachWithOccurrences(org.eclipse.collections.api.block.procedure.primitive.ObjectIntProcedure<? super T>);
descriptor: (Lorg/eclipse/collections/api/block/procedure/primitive/ObjectIntProcedure;)V
flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
Signature: (Lorg/eclipse/collections/api/block/procedure/primitive/ObjectIntProcedure<-TT;>;)V
MethodParameters:
Name Flags
procedure
public abstract org.eclipse.collections.api.bag.ParallelBag<T> select(org.eclipse.collections.api.block.predicate.Predicate<? super T>);
descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/bag/ParallelBag;
flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;)Lorg/eclipse/collections/api/bag/ParallelBag<TT;>;
MethodParameters:
Name Flags
predicate
public abstract <P> org.eclipse.collections.api.bag.ParallelBag<T> selectWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T, ? super P>, P);
descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/bag/ParallelBag;
flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
Signature: <P:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/predicate/Predicate2<-TT;-TP;>;TP;)Lorg/eclipse/collections/api/bag/ParallelBag<TT;>;
MethodParameters:
Name Flags
predicate
parameter
public abstract org.eclipse.collections.api.bag.ParallelBag<T> reject(org.eclipse.collections.api.block.predicate.Predicate<? super T>);
descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/bag/ParallelBag;
flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;)Lorg/eclipse/collections/api/bag/ParallelBag<TT;>;
MethodParameters:
Name Flags
predicate
public abstract <P> org.eclipse.collections.api.bag.ParallelBag<T> rejectWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T, ? super P>, P);
descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/bag/ParallelBag;
flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
Signature: <P:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/predicate/Predicate2<-TT;-TP;>;TP;)Lorg/eclipse/collections/api/bag/ParallelBag<TT;>;
MethodParameters:
Name Flags
predicate
parameter
public abstract <S> org.eclipse.collections.api.bag.ParallelBag<S> selectInstancesOf(java.lang.Class<S>);
descriptor: (Ljava/lang/Class;)Lorg/eclipse/collections/api/bag/ParallelBag;
flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
Signature: <S:Ljava/lang/Object;>(Ljava/lang/Class<TS;>;)Lorg/eclipse/collections/api/bag/ParallelBag<TS;>;
MethodParameters:
Name Flags
clazz
public abstract <V> org.eclipse.collections.api.multimap.bag.BagMultimap<V, T> groupBy(org.eclipse.collections.api.block.function.Function<? super T, ? extends V>);
descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/bag/BagMultimap;
flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
Signature: <V:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;)Lorg/eclipse/collections/api/multimap/bag/BagMultimap<TV;TT;>;
MethodParameters:
Name Flags
function
public abstract <V> org.eclipse.collections.api.multimap.bag.BagMultimap<V, T> groupByEach(org.eclipse.collections.api.block.function.Function<? super T, ? extends java.lang.Iterable<V>>);
descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/bag/BagMultimap;
flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
Signature: <V:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function<-TT;+Ljava/lang/Iterable<TV;>;>;)Lorg/eclipse/collections/api/multimap/bag/BagMultimap<TV;TT;>;
MethodParameters:
Name Flags
function
public org.eclipse.collections.api.multimap.Multimap groupBy(org.eclipse.collections.api.block.function.Function);
descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/Multimap;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.function.Function
invokeinterface org.eclipse.collections.api.bag.ParallelBag.groupBy:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/bag/BagMultimap;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.multimap.Multimap groupByEach(org.eclipse.collections.api.block.function.Function);
descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/Multimap;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.function.Function
invokeinterface org.eclipse.collections.api.bag.ParallelBag.groupByEach:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/bag/BagMultimap;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.ParallelIterable select(org.eclipse.collections.api.block.predicate.Predicate);
descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/ParallelIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.predicate.Predicate
invokeinterface org.eclipse.collections.api.bag.ParallelBag.select:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/bag/ParallelBag;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.ParallelIterable reject(org.eclipse.collections.api.block.predicate.Predicate);
descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/ParallelIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.predicate.Predicate
invokeinterface org.eclipse.collections.api.bag.ParallelBag.reject:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/bag/ParallelBag;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.ParallelIterable rejectWith(org.eclipse.collections.api.block.predicate.Predicate2, java.lang.Object);
descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/ParallelIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=3, locals=3, args_size=3
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.predicate.Predicate2
aload 2
checkcast java.lang.Object
invokeinterface org.eclipse.collections.api.bag.ParallelBag.rejectWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/bag/ParallelBag;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.ParallelIterable selectWith(org.eclipse.collections.api.block.predicate.Predicate2, java.lang.Object);
descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/ParallelIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=3, locals=3, args_size=3
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.predicate.Predicate2
aload 2
checkcast java.lang.Object
invokeinterface org.eclipse.collections.api.bag.ParallelBag.selectWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/bag/ParallelBag;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.ParallelIterable selectInstancesOf(java.lang.Class);
descriptor: (Ljava/lang/Class;)Lorg/eclipse/collections/api/ParallelIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
checkcast java.lang.Class
invokeinterface org.eclipse.collections.api.bag.ParallelBag.selectInstancesOf:(Ljava/lang/Class;)Lorg/eclipse/collections/api/bag/ParallelBag;
areturn
LocalVariableTable:
Start End Slot Name Signature
}
Signature: <T:Ljava/lang/Object;>Ljava/lang/Object;Lorg/eclipse/collections/api/ParallelIterable<TT;>;
SourceFile: "ParallelBag.java"
RuntimeInvisibleAnnotations:
org.eclipse.collections.api.annotation.Beta()