public interface org.eclipse.collections.api.map.primitive.ObjectIntMap<K> extends org.eclipse.collections.api.IntIterable
minor version: 0
major version: 59
flags: flags: (0x0601) ACC_PUBLIC, ACC_INTERFACE, ACC_ABSTRACT
this_class: org.eclipse.collections.api.map.primitive.ObjectIntMap
super_class: java.lang.Object
{
public abstract int get(java.lang.Object);
descriptor: (Ljava/lang/Object;)I
flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
MethodParameters:
Name Flags
key
public abstract int getOrThrow(java.lang.Object);
descriptor: (Ljava/lang/Object;)I
flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
MethodParameters:
Name Flags
key
public abstract int getIfAbsent(java.lang.Object, int);
descriptor: (Ljava/lang/Object;I)I
flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
MethodParameters:
Name Flags
key
ifAbsent
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(int);
descriptor: (I)Z
flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
MethodParameters:
Name Flags
value
public abstract void forEachValue(org.eclipse.collections.api.block.procedure.primitive.IntProcedure);
descriptor: (Lorg/eclipse/collections/api/block/procedure/primitive/IntProcedure;)V
flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
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.primitive.ObjectIntProcedure<? super K>);
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<-TK;>;)V
MethodParameters:
Name Flags
procedure
public abstract org.eclipse.collections.api.map.primitive.IntObjectMap<K> flipUniqueValues();
descriptor: ()Lorg/eclipse/collections/api/map/primitive/IntObjectMap;
flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
Signature: ()Lorg/eclipse/collections/api/map/primitive/IntObjectMap<TK;>;
public abstract org.eclipse.collections.api.map.primitive.ObjectIntMap<K> select(org.eclipse.collections.api.block.predicate.primitive.ObjectIntPredicate<? super K>);
descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/ObjectIntPredicate;)Lorg/eclipse/collections/api/map/primitive/ObjectIntMap;
flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
Signature: (Lorg/eclipse/collections/api/block/predicate/primitive/ObjectIntPredicate<-TK;>;)Lorg/eclipse/collections/api/map/primitive/ObjectIntMap<TK;>;
MethodParameters:
Name Flags
predicate
public abstract org.eclipse.collections.api.map.primitive.ObjectIntMap<K> reject(org.eclipse.collections.api.block.predicate.primitive.ObjectIntPredicate<? super K>);
descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/ObjectIntPredicate;)Lorg/eclipse/collections/api/map/primitive/ObjectIntMap;
flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
Signature: (Lorg/eclipse/collections/api/block/predicate/primitive/ObjectIntPredicate<-TK;>;)Lorg/eclipse/collections/api/map/primitive/ObjectIntMap<TK;>;
MethodParameters:
Name Flags
predicate
public org.eclipse.collections.api.map.primitive.ObjectIntMap<K> tap(org.eclipse.collections.api.block.procedure.primitive.IntProcedure);
descriptor: (Lorg/eclipse/collections/api/block/procedure/primitive/IntProcedure;)Lorg/eclipse/collections/api/map/primitive/ObjectIntMap;
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=2, args_size=2
start local 0 start local 1 0: aload 0
aload 1
invokeinterface org.eclipse.collections.api.map.primitive.ObjectIntMap.forEach:(Lorg/eclipse/collections/api/block/procedure/primitive/IntProcedure;)V
1: aload 0
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lorg/eclipse/collections/api/map/primitive/ObjectIntMap<TK;>;
0 2 1 procedure Lorg/eclipse/collections/api/block/procedure/primitive/IntProcedure;
Signature: (Lorg/eclipse/collections/api/block/procedure/primitive/IntProcedure;)Lorg/eclipse/collections/api/map/primitive/ObjectIntMap<TK;>;
MethodParameters:
Name Flags
procedure
public abstract java.lang.String toString();
descriptor: ()Ljava/lang/String;
flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
public abstract org.eclipse.collections.api.map.primitive.ImmutableObjectIntMap<K> toImmutable();
descriptor: ()Lorg/eclipse/collections/api/map/primitive/ImmutableObjectIntMap;
flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
Signature: ()Lorg/eclipse/collections/api/map/primitive/ImmutableObjectIntMap<TK;>;
public abstract java.util.Set<K> keySet();
descriptor: ()Ljava/util/Set;
flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
Signature: ()Ljava/util/Set<TK;>;
public abstract org.eclipse.collections.api.collection.primitive.MutableIntCollection values();
descriptor: ()Lorg/eclipse/collections/api/collection/primitive/MutableIntCollection;
flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
public abstract org.eclipse.collections.api.LazyIterable<K> keysView();
descriptor: ()Lorg/eclipse/collections/api/LazyIterable;
flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
Signature: ()Lorg/eclipse/collections/api/LazyIterable<TK;>;
public abstract org.eclipse.collections.api.RichIterable<org.eclipse.collections.api.tuple.primitive.ObjectIntPair<K>> keyValuesView();
descriptor: ()Lorg/eclipse/collections/api/RichIterable;
flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
Signature: ()Lorg/eclipse/collections/api/RichIterable<Lorg/eclipse/collections/api/tuple/primitive/ObjectIntPair<TK;>;>;
public org.eclipse.collections.api.IntIterable tap(org.eclipse.collections.api.block.procedure.primitive.IntProcedure);
descriptor: (Lorg/eclipse/collections/api/block/procedure/primitive/IntProcedure;)Lorg/eclipse/collections/api/IntIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
invokeinterface org.eclipse.collections.api.map.primitive.ObjectIntMap.tap:(Lorg/eclipse/collections/api/block/procedure/primitive/IntProcedure;)Lorg/eclipse/collections/api/map/primitive/ObjectIntMap;
areturn
LocalVariableTable:
Start End Slot Name Signature
}
Signature: <K:Ljava/lang/Object;>Ljava/lang/Object;Lorg/eclipse/collections/api/IntIterable;
SourceFile: "ObjectIntMap.java"