public interface org.eclipse.collections.api.map.primitive.ObjectDoubleMap<K> extends org.eclipse.collections.api.DoubleIterable
minor version: 0
major version: 59
flags: flags: (0x0601) ACC_PUBLIC, ACC_INTERFACE, ACC_ABSTRACT
this_class: org.eclipse.collections.api.map.primitive.ObjectDoubleMap
super_class: java.lang.Object
{
public abstract double get(java.lang.Object);
descriptor: (Ljava/lang/Object;)D
flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
MethodParameters:
Name Flags
key
public abstract double getOrThrow(java.lang.Object);
descriptor: (Ljava/lang/Object;)D
flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
MethodParameters:
Name Flags
key
public abstract double getIfAbsent(java.lang.Object, double);
descriptor: (Ljava/lang/Object;D)D
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(double);
descriptor: (D)Z
flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
MethodParameters:
Name Flags
value
public abstract void forEachValue(org.eclipse.collections.api.block.procedure.primitive.DoubleProcedure);
descriptor: (Lorg/eclipse/collections/api/block/procedure/primitive/DoubleProcedure;)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.ObjectDoubleProcedure<? super K>);
descriptor: (Lorg/eclipse/collections/api/block/procedure/primitive/ObjectDoubleProcedure;)V
flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
Signature: (Lorg/eclipse/collections/api/block/procedure/primitive/ObjectDoubleProcedure<-TK;>;)V
MethodParameters:
Name Flags
procedure
public abstract org.eclipse.collections.api.map.primitive.DoubleObjectMap<K> flipUniqueValues();
descriptor: ()Lorg/eclipse/collections/api/map/primitive/DoubleObjectMap;
flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
Signature: ()Lorg/eclipse/collections/api/map/primitive/DoubleObjectMap<TK;>;
public abstract org.eclipse.collections.api.map.primitive.ObjectDoubleMap<K> select(org.eclipse.collections.api.block.predicate.primitive.ObjectDoublePredicate<? super K>);
descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/ObjectDoublePredicate;)Lorg/eclipse/collections/api/map/primitive/ObjectDoubleMap;
flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
Signature: (Lorg/eclipse/collections/api/block/predicate/primitive/ObjectDoublePredicate<-TK;>;)Lorg/eclipse/collections/api/map/primitive/ObjectDoubleMap<TK;>;
MethodParameters:
Name Flags
predicate
public abstract org.eclipse.collections.api.map.primitive.ObjectDoubleMap<K> reject(org.eclipse.collections.api.block.predicate.primitive.ObjectDoublePredicate<? super K>);
descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/ObjectDoublePredicate;)Lorg/eclipse/collections/api/map/primitive/ObjectDoubleMap;
flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
Signature: (Lorg/eclipse/collections/api/block/predicate/primitive/ObjectDoublePredicate<-TK;>;)Lorg/eclipse/collections/api/map/primitive/ObjectDoubleMap<TK;>;
MethodParameters:
Name Flags
predicate
public org.eclipse.collections.api.map.primitive.ObjectDoubleMap<K> tap(org.eclipse.collections.api.block.procedure.primitive.DoubleProcedure);
descriptor: (Lorg/eclipse/collections/api/block/procedure/primitive/DoubleProcedure;)Lorg/eclipse/collections/api/map/primitive/ObjectDoubleMap;
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.ObjectDoubleMap.forEach:(Lorg/eclipse/collections/api/block/procedure/primitive/DoubleProcedure;)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/ObjectDoubleMap<TK;>;
0 2 1 procedure Lorg/eclipse/collections/api/block/procedure/primitive/DoubleProcedure;
Signature: (Lorg/eclipse/collections/api/block/procedure/primitive/DoubleProcedure;)Lorg/eclipse/collections/api/map/primitive/ObjectDoubleMap<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.ImmutableObjectDoubleMap<K> toImmutable();
descriptor: ()Lorg/eclipse/collections/api/map/primitive/ImmutableObjectDoubleMap;
flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
Signature: ()Lorg/eclipse/collections/api/map/primitive/ImmutableObjectDoubleMap<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.MutableDoubleCollection values();
descriptor: ()Lorg/eclipse/collections/api/collection/primitive/MutableDoubleCollection;
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.ObjectDoublePair<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/ObjectDoublePair<TK;>;>;
public org.eclipse.collections.api.DoubleIterable tap(org.eclipse.collections.api.block.procedure.primitive.DoubleProcedure);
descriptor: (Lorg/eclipse/collections/api/block/procedure/primitive/DoubleProcedure;)Lorg/eclipse/collections/api/DoubleIterable;
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.ObjectDoubleMap.tap:(Lorg/eclipse/collections/api/block/procedure/primitive/DoubleProcedure;)Lorg/eclipse/collections/api/map/primitive/ObjectDoubleMap;
areturn
LocalVariableTable:
Start End Slot Name Signature
}
Signature: <K:Ljava/lang/Object;>Ljava/lang/Object;Lorg/eclipse/collections/api/DoubleIterable;
SourceFile: "ObjectDoubleMap.java"