public interface org.eclipse.collections.api.map.primitive.ObjectLongMap<K> extends org.eclipse.collections.api.LongIterable
minor version: 0
major version: 59
flags: flags: (0x0601) ACC_PUBLIC, ACC_INTERFACE, ACC_ABSTRACT
this_class: org.eclipse.collections.api.map.primitive.ObjectLongMap
super_class: java.lang.Object
{
public abstract long get(java.lang.Object);
descriptor: (Ljava/lang/Object;)J
flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
MethodParameters:
Name Flags
key
public abstract long getOrThrow(java.lang.Object);
descriptor: (Ljava/lang/Object;)J
flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
MethodParameters:
Name Flags
key
public abstract long getIfAbsent(java.lang.Object, long);
descriptor: (Ljava/lang/Object;J)J
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(long);
descriptor: (J)Z
flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
MethodParameters:
Name Flags
value
public abstract void forEachValue(org.eclipse.collections.api.block.procedure.primitive.LongProcedure);
descriptor: (Lorg/eclipse/collections/api/block/procedure/primitive/LongProcedure;)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.ObjectLongProcedure<? super K>);
descriptor: (Lorg/eclipse/collections/api/block/procedure/primitive/ObjectLongProcedure;)V
flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
Signature: (Lorg/eclipse/collections/api/block/procedure/primitive/ObjectLongProcedure<-TK;>;)V
MethodParameters:
Name Flags
procedure
public abstract org.eclipse.collections.api.map.primitive.LongObjectMap<K> flipUniqueValues();
descriptor: ()Lorg/eclipse/collections/api/map/primitive/LongObjectMap;
flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
Signature: ()Lorg/eclipse/collections/api/map/primitive/LongObjectMap<TK;>;
public abstract org.eclipse.collections.api.map.primitive.ObjectLongMap<K> select(org.eclipse.collections.api.block.predicate.primitive.ObjectLongPredicate<? super K>);
descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/ObjectLongPredicate;)Lorg/eclipse/collections/api/map/primitive/ObjectLongMap;
flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
Signature: (Lorg/eclipse/collections/api/block/predicate/primitive/ObjectLongPredicate<-TK;>;)Lorg/eclipse/collections/api/map/primitive/ObjectLongMap<TK;>;
MethodParameters:
Name Flags
predicate
public abstract org.eclipse.collections.api.map.primitive.ObjectLongMap<K> reject(org.eclipse.collections.api.block.predicate.primitive.ObjectLongPredicate<? super K>);
descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/ObjectLongPredicate;)Lorg/eclipse/collections/api/map/primitive/ObjectLongMap;
flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
Signature: (Lorg/eclipse/collections/api/block/predicate/primitive/ObjectLongPredicate<-TK;>;)Lorg/eclipse/collections/api/map/primitive/ObjectLongMap<TK;>;
MethodParameters:
Name Flags
predicate
public org.eclipse.collections.api.map.primitive.ObjectLongMap<K> tap(org.eclipse.collections.api.block.procedure.primitive.LongProcedure);
descriptor: (Lorg/eclipse/collections/api/block/procedure/primitive/LongProcedure;)Lorg/eclipse/collections/api/map/primitive/ObjectLongMap;
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.ObjectLongMap.forEach:(Lorg/eclipse/collections/api/block/procedure/primitive/LongProcedure;)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/ObjectLongMap<TK;>;
0 2 1 procedure Lorg/eclipse/collections/api/block/procedure/primitive/LongProcedure;
Signature: (Lorg/eclipse/collections/api/block/procedure/primitive/LongProcedure;)Lorg/eclipse/collections/api/map/primitive/ObjectLongMap<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.ImmutableObjectLongMap<K> toImmutable();
descriptor: ()Lorg/eclipse/collections/api/map/primitive/ImmutableObjectLongMap;
flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
Signature: ()Lorg/eclipse/collections/api/map/primitive/ImmutableObjectLongMap<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.MutableLongCollection values();
descriptor: ()Lorg/eclipse/collections/api/collection/primitive/MutableLongCollection;
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.ObjectLongPair<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/ObjectLongPair<TK;>;>;
public org.eclipse.collections.api.LongIterable tap(org.eclipse.collections.api.block.procedure.primitive.LongProcedure);
descriptor: (Lorg/eclipse/collections/api/block/procedure/primitive/LongProcedure;)Lorg/eclipse/collections/api/LongIterable;
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.ObjectLongMap.tap:(Lorg/eclipse/collections/api/block/procedure/primitive/LongProcedure;)Lorg/eclipse/collections/api/map/primitive/ObjectLongMap;
areturn
LocalVariableTable:
Start End Slot Name Signature
}
Signature: <K:Ljava/lang/Object;>Ljava/lang/Object;Lorg/eclipse/collections/api/LongIterable;
SourceFile: "ObjectLongMap.java"