public interface org.eclipse.collections.api.map.MapIterable<K, V> extends org.eclipse.collections.api.RichIterable<V>
minor version: 0
major version: 59
flags: flags: (0x0601) ACC_PUBLIC, ACC_INTERFACE, ACC_ABSTRACT
this_class: org.eclipse.collections.api.map.MapIterable
super_class: java.lang.Object
{
public abstract V get();
descriptor: (Ljava/lang/Object;)Ljava/lang/Object;
flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
Signature: (Ljava/lang/Object;)TV;
MethodParameters:
Name Flags
key
public abstract boolean containsKey(java.lang.Object);
descriptor: (Ljava/lang/Object;)Z
flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
MethodParameters:
Name Flags
key
public abstract boolean containsValue(java.lang.Object);
descriptor: (Ljava/lang/Object;)Z
flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
MethodParameters:
Name Flags
value
public abstract void forEachValue(org.eclipse.collections.api.block.procedure.Procedure<? super V>);
descriptor: (Lorg/eclipse/collections/api/block/procedure/Procedure;)V
flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
Signature: (Lorg/eclipse/collections/api/block/procedure/Procedure<-TV;>;)V
MethodParameters:
Name Flags
procedure
public abstract org.eclipse.collections.api.map.MapIterable<K, V> tap(org.eclipse.collections.api.block.procedure.Procedure<? super V>);
descriptor: (Lorg/eclipse/collections/api/block/procedure/Procedure;)Lorg/eclipse/collections/api/map/MapIterable;
flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
Signature: (Lorg/eclipse/collections/api/block/procedure/Procedure<-TV;>;)Lorg/eclipse/collections/api/map/MapIterable<TK;TV;>;
MethodParameters:
Name Flags
procedure
public abstract void forEachKey(org.eclipse.collections.api.block.procedure.Procedure<? super K>);
descriptor: (Lorg/eclipse/collections/api/block/procedure/Procedure;)V
flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
Signature: (Lorg/eclipse/collections/api/block/procedure/Procedure<-TK;>;)V
MethodParameters:
Name Flags
procedure
public abstract void forEachKeyValue(org.eclipse.collections.api.block.procedure.Procedure2<? super K, ? super V>);
descriptor: (Lorg/eclipse/collections/api/block/procedure/Procedure2;)V
flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
Signature: (Lorg/eclipse/collections/api/block/procedure/Procedure2<-TK;-TV;>;)V
MethodParameters:
Name Flags
procedure
public abstract org.eclipse.collections.api.map.MapIterable<V, K> flipUniqueValues();
descriptor: ()Lorg/eclipse/collections/api/map/MapIterable;
flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
Signature: ()Lorg/eclipse/collections/api/map/MapIterable<TV;TK;>;
public abstract V getIfAbsent(K, org.eclipse.collections.api.block.function.Function0<? extends V>);
descriptor: (Ljava/lang/Object;Lorg/eclipse/collections/api/block/function/Function0;)Ljava/lang/Object;
flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
Signature: (TK;Lorg/eclipse/collections/api/block/function/Function0<+TV;>;)TV;
MethodParameters:
Name Flags
key
function
public abstract V getIfAbsentValue(K, );
descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
Signature: (TK;TV;)TV;
MethodParameters:
Name Flags
key
value
public abstract <P> V getIfAbsentWith(K, org.eclipse.collections.api.block.function.Function<? super P, ? extends V>, );
descriptor: (Ljava/lang/Object;Lorg/eclipse/collections/api/block/function/Function;Ljava/lang/Object;)Ljava/lang/Object;
flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
Signature: <P:Ljava/lang/Object;>(TK;Lorg/eclipse/collections/api/block/function/Function<-TP;+TV;>;TP;)TV;
MethodParameters:
Name Flags
key
function
parameter
public abstract <A> A ifPresentApply(K, org.eclipse.collections.api.block.function.Function<? super V, ? extends A>);
descriptor: (Ljava/lang/Object;Lorg/eclipse/collections/api/block/function/Function;)Ljava/lang/Object;
flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
Signature: <A:Ljava/lang/Object;>(TK;Lorg/eclipse/collections/api/block/function/Function<-TV;+TA;>;)TA;
MethodParameters:
Name Flags
key
function
public abstract org.eclipse.collections.api.RichIterable<K> keysView();
descriptor: ()Lorg/eclipse/collections/api/RichIterable;
flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
Signature: ()Lorg/eclipse/collections/api/RichIterable<TK;>;
public abstract org.eclipse.collections.api.RichIterable<V> valuesView();
descriptor: ()Lorg/eclipse/collections/api/RichIterable;
flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
Signature: ()Lorg/eclipse/collections/api/RichIterable<TV;>;
public abstract org.eclipse.collections.api.RichIterable<org.eclipse.collections.api.tuple.Pair<K, V>> keyValuesView();
descriptor: ()Lorg/eclipse/collections/api/RichIterable;
flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
Signature: ()Lorg/eclipse/collections/api/RichIterable<Lorg/eclipse/collections/api/tuple/Pair<TK;TV;>;>;
public abstract org.eclipse.collections.api.multimap.Multimap<V, K> flip();
descriptor: ()Lorg/eclipse/collections/api/multimap/Multimap;
flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
Signature: ()Lorg/eclipse/collections/api/multimap/Multimap<TV;TK;>;
public abstract org.eclipse.collections.api.map.MapIterable<K, V> select(org.eclipse.collections.api.block.predicate.Predicate2<? super K, ? super V>);
descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;)Lorg/eclipse/collections/api/map/MapIterable;
flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate2<-TK;-TV;>;)Lorg/eclipse/collections/api/map/MapIterable<TK;TV;>;
MethodParameters:
Name Flags
predicate
public abstract org.eclipse.collections.api.map.MapIterable<K, V> reject(org.eclipse.collections.api.block.predicate.Predicate2<? super K, ? super V>);
descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;)Lorg/eclipse/collections/api/map/MapIterable;
flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate2<-TK;-TV;>;)Lorg/eclipse/collections/api/map/MapIterable<TK;TV;>;
MethodParameters:
Name Flags
predicate
public abstract <K2, V2> org.eclipse.collections.api.map.MapIterable<K2, V2> collect(org.eclipse.collections.api.block.function.Function2<? super K, ? super V, org.eclipse.collections.api.tuple.Pair<K2, V2>>);
descriptor: (Lorg/eclipse/collections/api/block/function/Function2;)Lorg/eclipse/collections/api/map/MapIterable;
flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
Signature: <K2:Ljava/lang/Object;V2:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function2<-TK;-TV;Lorg/eclipse/collections/api/tuple/Pair<TK2;TV2;>;>;)Lorg/eclipse/collections/api/map/MapIterable<TK2;TV2;>;
MethodParameters:
Name Flags
function
public abstract <R> org.eclipse.collections.api.map.MapIterable<K, R> collectValues(org.eclipse.collections.api.block.function.Function2<? super K, ? super V, ? extends R>);
descriptor: (Lorg/eclipse/collections/api/block/function/Function2;)Lorg/eclipse/collections/api/map/MapIterable;
flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
Signature: <R:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function2<-TK;-TV;+TR;>;)Lorg/eclipse/collections/api/map/MapIterable<TK;TR;>;
MethodParameters:
Name Flags
function
public abstract org.eclipse.collections.api.tuple.Pair<K, V> detect(org.eclipse.collections.api.block.predicate.Predicate2<? super K, ? super V>);
descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;)Lorg/eclipse/collections/api/tuple/Pair;
flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate2<-TK;-TV;>;)Lorg/eclipse/collections/api/tuple/Pair<TK;TV;>;
MethodParameters:
Name Flags
predicate
public abstract java.util.Optional<org.eclipse.collections.api.tuple.Pair<K, V>> detectOptional(org.eclipse.collections.api.block.predicate.Predicate2<? super K, ? super V>);
descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;)Ljava/util/Optional;
flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate2<-TK;-TV;>;)Ljava/util/Optional<Lorg/eclipse/collections/api/tuple/Pair<TK;TV;>;>;
MethodParameters:
Name Flags
predicate
public abstract boolean equals(java.lang.Object);
descriptor: (Ljava/lang/Object;)Z
flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
MethodParameters:
Name Flags
o
public abstract int hashCode();
descriptor: ()I
flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
public abstract java.lang.String toString();
descriptor: ()Ljava/lang/String;
flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
public abstract org.eclipse.collections.api.map.ImmutableMapIterable<K, V> toImmutable();
descriptor: ()Lorg/eclipse/collections/api/map/ImmutableMapIterable;
flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
Signature: ()Lorg/eclipse/collections/api/map/ImmutableMapIterable<TK;TV;>;
public java.util.stream.Stream<V> stream();
descriptor: ()Ljava/util/stream/Stream;
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=1, args_size=1
start local 0 0: aload 0
invokeinterface org.eclipse.collections.api.map.MapIterable.spliterator:()Ljava/util/Spliterator;
iconst_0
invokestatic java.util.stream.StreamSupport.stream:(Ljava/util/Spliterator;Z)Ljava/util/stream/Stream;
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/api/map/MapIterable<TK;TV;>;
Signature: ()Ljava/util/stream/Stream<TV;>;
public java.util.stream.Stream<V> parallelStream();
descriptor: ()Ljava/util/stream/Stream;
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=1, args_size=1
start local 0 0: aload 0
invokeinterface org.eclipse.collections.api.map.MapIterable.spliterator:()Ljava/util/Spliterator;
iconst_1
invokestatic java.util.stream.StreamSupport.stream:(Ljava/util/Spliterator;Z)Ljava/util/stream/Stream;
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/api/map/MapIterable<TK;TV;>;
Signature: ()Ljava/util/stream/Stream<TV;>;
public java.util.Spliterator<V> spliterator();
descriptor: ()Ljava/util/Spliterator;
flags: (0x0001) ACC_PUBLIC
Code:
stack=4, locals=1, args_size=1
start local 0 0: aload 0
invokeinterface org.eclipse.collections.api.map.MapIterable.iterator:()Ljava/util/Iterator;
aload 0
invokeinterface org.eclipse.collections.api.map.MapIterable.size:()I
i2l
iconst_0
invokestatic java.util.Spliterators.spliterator:(Ljava/util/Iterator;JI)Ljava/util/Spliterator;
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/api/map/MapIterable<TK;TV;>;
Signature: ()Ljava/util/Spliterator<TV;>;
public org.eclipse.collections.api.RichIterable tap(org.eclipse.collections.api.block.procedure.Procedure);
descriptor: (Lorg/eclipse/collections/api/block/procedure/Procedure;)Lorg/eclipse/collections/api/RichIterable;
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.procedure.Procedure
invokeinterface org.eclipse.collections.api.map.MapIterable.tap:(Lorg/eclipse/collections/api/block/procedure/Procedure;)Lorg/eclipse/collections/api/map/MapIterable;
areturn
LocalVariableTable:
Start End Slot Name Signature
}
Signature: <K:Ljava/lang/Object;V:Ljava/lang/Object;>Ljava/lang/Object;Lorg/eclipse/collections/api/RichIterable<TV;>;
SourceFile: "MapIterable.java"