public class FloatDoubleHashMap extends Object implements MutableFloatDoubleMap, Externalizable
| Constructor and Description |
|---|
FloatDoubleHashMap() |
FloatDoubleHashMap(FloatDoubleMap map) |
FloatDoubleHashMap(int initialCapacity) |
| Modifier and Type | Method and Description |
|---|---|
double |
addToValue(float key,
double toBeAdded) |
boolean |
allSatisfy(DoublePredicate predicate) |
boolean |
anySatisfy(DoublePredicate predicate) |
void |
appendString(Appendable appendable)
Prints a string representation of this collection onto the given
Appendable. |
void |
appendString(Appendable appendable,
String separator)
Prints a string representation of this collection onto the given
Appendable. |
void |
appendString(Appendable appendable,
String start,
String separator,
String end)
Prints a string representation of this collection onto the given
Appendable. |
LazyDoubleIterable |
asLazy() |
MutableFloatDoubleMap |
asSynchronized() |
MutableFloatDoubleMap |
asUnmodifiable() |
double |
average() |
void |
clear() |
<V> MutableCollection<V> |
collect(DoubleToObjectFunction<? extends V> function) |
void |
compact()
Rehashes every element in the set into a new backing table of the smallest possible size and eliminating removed sentinels.
|
boolean |
contains(double value) |
boolean |
containsAll(double... source) |
boolean |
containsAll(DoubleIterable source) |
boolean |
containsKey(float key) |
boolean |
containsValue(double value) |
int |
count(DoublePredicate predicate) |
double |
detectIfNone(DoublePredicate predicate,
double value) |
DoubleIterator |
doubleIterator() |
boolean |
equals(Object obj)
Follows the same general contract as
Map.equals(Object). |
void |
forEach(DoubleProcedure procedure) |
void |
forEachKey(FloatProcedure procedure) |
void |
forEachKeyValue(FloatDoubleProcedure procedure) |
void |
forEachValue(DoubleProcedure procedure) |
double |
get(float key) |
double |
getIfAbsent(float key,
double ifAbsent) |
double |
getIfAbsentPut(float key,
double value) |
double |
getIfAbsentPut(float key,
DoubleFunction0 function) |
<P> double |
getIfAbsentPutWith(float key,
DoubleFunction<? super P> function,
P parameter) |
double |
getIfAbsentPutWithKey(float key,
FloatToDoubleFunction function) |
double |
getOrThrow(float key) |
int |
hashCode()
Follows the same general contract as
Map.hashCode(). |
<V> V |
injectInto(V injectedValue,
ObjectDoubleToObjectFunction<? super V,? extends V> function) |
boolean |
isEmpty()
Returns true if this iterable has zero items.
|
MutableFloatSet |
keySet() |
LazyFloatIterable |
keysView() |
RichIterable<FloatDoublePair> |
keyValuesView() |
String |
makeString()
Returns a string representation of this collection by delegating to
PrimitiveIterable.makeString(String) and defaulting
the separator parameter to the characters ", " (comma and space). |
String |
makeString(String separator)
Returns a string representation of this collection by delegating to
PrimitiveIterable.makeString(String, String, String)
and defaulting the start and end parameters to "" (the empty String). |
String |
makeString(String start,
String separator,
String end)
Returns a string representation of this collection.
|
double |
max() |
double |
maxIfEmpty(double defaultValue) |
double |
median() |
double |
min() |
double |
minIfEmpty(double defaultValue) |
static FloatDoubleHashMap |
newWithKeysValues(float key1,
double value1) |
static FloatDoubleHashMap |
newWithKeysValues(float key1,
double value1,
float key2,
double value2) |
static FloatDoubleHashMap |
newWithKeysValues(float key1,
double value1,
float key2,
double value2,
float key3,
double value3) |
static FloatDoubleHashMap |
newWithKeysValues(float key1,
double value1,
float key2,
double value2,
float key3,
double value3,
float key4,
double value4) |
boolean |
noneSatisfy(DoublePredicate predicate) |
boolean |
notEmpty()
The English equivalent of !this.isEmpty()
|
void |
put(float key,
double value) |
void |
putAll(FloatDoubleMap map) |
void |
readExternal(ObjectInput in) |
MutableDoubleCollection |
reject(DoublePredicate predicate) |
FloatDoubleHashMap |
reject(FloatDoublePredicate predicate) |
void |
remove(float key) |
void |
removeKey(float key) |
double |
removeKeyIfAbsent(float key,
double value) |
MutableDoubleCollection |
select(DoublePredicate predicate) |
FloatDoubleHashMap |
select(FloatDoublePredicate predicate) |
int |
size()
Returns the number of items in this iterable.
|
double |
sum() |
double[] |
toArray() |
MutableDoubleBag |
toBag() |
ImmutableFloatDoubleMap |
toImmutable() |
MutableDoubleList |
toList() |
MutableDoubleSet |
toSet() |
double[] |
toSortedArray() |
MutableDoubleList |
toSortedList() |
String |
toString()
Returns a string representation of this FloatDoubleMap.
|
double |
updateValue(float key,
double initialValueIfAbsent,
DoubleToDoubleFunction function) |
MutableDoubleCollection |
values() |
FloatDoubleHashMap |
withKeysValues(float key1,
double value1,
float key2,
double value2) |
FloatDoubleHashMap |
withKeysValues(float key1,
double value1,
float key2,
double value2,
float key3,
double value3) |
FloatDoubleHashMap |
withKeysValues(float key1,
double value1,
float key2,
double value2,
float key3,
double value3,
float key4,
double value4) |
FloatDoubleHashMap |
withKeyValue(float key1,
double value1) |
FloatDoubleHashMap |
withoutAllKeys(FloatIterable keys) |
FloatDoubleHashMap |
withoutKey(float key) |
void |
writeExternal(ObjectOutput out) |
public FloatDoubleHashMap()
public FloatDoubleHashMap(int initialCapacity)
public FloatDoubleHashMap(FloatDoubleMap map)
public static FloatDoubleHashMap newWithKeysValues(float key1, double value1)
public static FloatDoubleHashMap newWithKeysValues(float key1, double value1, float key2, double value2)
public static FloatDoubleHashMap newWithKeysValues(float key1, double value1, float key2, double value2, float key3, double value3)
public static FloatDoubleHashMap newWithKeysValues(float key1, double value1, float key2, double value2, float key3, double value3, float key4, double value4)
public boolean equals(Object obj)
FloatDoubleMapMap.equals(Object).equals in interface FloatDoubleMapequals in class Objectpublic int hashCode()
FloatDoubleMapMap.hashCode().hashCode in interface FloatDoubleMaphashCode in class Objectpublic String toString()
FloatDoubleMaptoString in interface FloatDoubleMaptoString in interface PrimitiveIterabletoString in class Objectpublic int size()
PrimitiveIterablesize in interface PrimitiveIterablepublic boolean isEmpty()
PrimitiveIterableisEmpty in interface PrimitiveIterablepublic boolean notEmpty()
PrimitiveIterablenotEmpty in interface PrimitiveIterablepublic String makeString()
PrimitiveIterablePrimitiveIterable.makeString(String) and defaulting
the separator parameter to the characters ", " (comma and space).makeString in interface PrimitiveIterablepublic String makeString(String separator)
PrimitiveIterablePrimitiveIterable.makeString(String, String, String)
and defaulting the start and end parameters to "" (the empty String).makeString in interface PrimitiveIterablepublic String makeString(String start, String separator, String end)
PrimitiveIterablemakeString in interface PrimitiveIterablepublic void appendString(Appendable appendable)
PrimitiveIterableAppendable. Prints the string returned
by PrimitiveIterable.makeString().appendString in interface PrimitiveIterablepublic void appendString(Appendable appendable, String separator)
PrimitiveIterableAppendable. Prints the string returned
by PrimitiveIterable.makeString(String).appendString in interface PrimitiveIterablepublic void appendString(Appendable appendable, String start, String separator, String end)
PrimitiveIterableAppendable. Prints the string returned
by PrimitiveIterable.makeString(String, String, String).appendString in interface PrimitiveIterablepublic DoubleIterator doubleIterator()
doubleIterator in interface DoubleIterablepublic double[] toArray()
toArray in interface DoubleIterablepublic boolean contains(double value)
contains in interface DoubleIterablepublic boolean containsAll(double... source)
containsAll in interface DoubleIterablepublic boolean containsAll(DoubleIterable source)
containsAll in interface DoubleIterablepublic void forEach(DoubleProcedure procedure)
forEach in interface DoubleIterablepublic MutableDoubleCollection select(DoublePredicate predicate)
select in interface DoubleIterableselect in interface MutableFloatDoubleMappublic MutableDoubleCollection reject(DoublePredicate predicate)
reject in interface DoubleIterablereject in interface MutableFloatDoubleMappublic <V> MutableCollection<V> collect(DoubleToObjectFunction<? extends V> function)
collect in interface DoubleIterablecollect in interface MutableFloatDoubleMappublic double detectIfNone(DoublePredicate predicate, double value)
detectIfNone in interface DoubleIterablepublic int count(DoublePredicate predicate)
count in interface DoubleIterablepublic boolean anySatisfy(DoublePredicate predicate)
anySatisfy in interface DoubleIterablepublic boolean allSatisfy(DoublePredicate predicate)
allSatisfy in interface DoubleIterablepublic boolean noneSatisfy(DoublePredicate predicate)
noneSatisfy in interface DoubleIterablepublic <V> V injectInto(V injectedValue,
ObjectDoubleToObjectFunction<? super V,? extends V> function)
injectInto in interface DoubleIterablepublic MutableDoubleList toList()
toList in interface DoubleIterablepublic MutableDoubleSet toSet()
toSet in interface DoubleIterablepublic MutableDoubleBag toBag()
toBag in interface DoubleIterablepublic LazyDoubleIterable asLazy()
asLazy in interface DoubleIterablepublic void clear()
clear in interface MutableFloatDoubleMappublic void put(float key,
double value)
put in interface MutableFloatDoubleMappublic void putAll(FloatDoubleMap map)
putAll in interface MutableFloatDoubleMappublic void removeKey(float key)
removeKey in interface MutableFloatDoubleMappublic void remove(float key)
remove in interface MutableFloatDoubleMappublic double removeKeyIfAbsent(float key,
double value)
removeKeyIfAbsent in interface MutableFloatDoubleMappublic double getIfAbsentPut(float key,
double value)
getIfAbsentPut in interface MutableFloatDoubleMappublic double getIfAbsentPut(float key,
DoubleFunction0 function)
getIfAbsentPut in interface MutableFloatDoubleMappublic <P> double getIfAbsentPutWith(float key,
DoubleFunction<? super P> function,
P parameter)
getIfAbsentPutWith in interface MutableFloatDoubleMappublic double getIfAbsentPutWithKey(float key,
FloatToDoubleFunction function)
getIfAbsentPutWithKey in interface MutableFloatDoubleMappublic double addToValue(float key,
double toBeAdded)
addToValue in interface MutableFloatDoubleMappublic double updateValue(float key,
double initialValueIfAbsent,
DoubleToDoubleFunction function)
updateValue in interface MutableFloatDoubleMappublic FloatDoubleHashMap withKeyValue(float key1, double value1)
withKeyValue in interface MutableFloatDoubleMappublic FloatDoubleHashMap withKeysValues(float key1, double value1, float key2, double value2)
public FloatDoubleHashMap withKeysValues(float key1, double value1, float key2, double value2, float key3, double value3)
public FloatDoubleHashMap withKeysValues(float key1, double value1, float key2, double value2, float key3, double value3, float key4, double value4)
public FloatDoubleHashMap withoutKey(float key)
withoutKey in interface MutableFloatDoubleMappublic FloatDoubleHashMap withoutAllKeys(FloatIterable keys)
withoutAllKeys in interface MutableFloatDoubleMappublic MutableFloatDoubleMap asUnmodifiable()
asUnmodifiable in interface MutableFloatDoubleMappublic MutableFloatDoubleMap asSynchronized()
asSynchronized in interface MutableFloatDoubleMappublic ImmutableFloatDoubleMap toImmutable()
toImmutable in interface FloatDoubleMappublic double get(float key)
get in interface FloatDoubleMappublic double getIfAbsent(float key,
double ifAbsent)
getIfAbsent in interface FloatDoubleMappublic double getOrThrow(float key)
getOrThrow in interface FloatDoubleMappublic boolean containsKey(float key)
containsKey in interface FloatDoubleMappublic boolean containsValue(double value)
containsValue in interface FloatDoubleMappublic void forEachValue(DoubleProcedure procedure)
forEachValue in interface FloatDoubleMappublic void forEachKey(FloatProcedure procedure)
forEachKey in interface FloatDoubleMappublic void forEachKeyValue(FloatDoubleProcedure procedure)
forEachKeyValue in interface FloatDoubleMappublic LazyFloatIterable keysView()
keysView in interface FloatDoubleMappublic RichIterable<FloatDoublePair> keyValuesView()
keyValuesView in interface FloatDoubleMappublic FloatDoubleHashMap select(FloatDoublePredicate predicate)
select in interface FloatDoubleMapselect in interface MutableFloatDoubleMappublic FloatDoubleHashMap reject(FloatDoublePredicate predicate)
reject in interface FloatDoubleMapreject in interface MutableFloatDoubleMappublic double sum()
sum in interface DoubleIterablepublic double max()
max in interface DoubleIterablepublic double maxIfEmpty(double defaultValue)
maxIfEmpty in interface DoubleIterablepublic double min()
min in interface DoubleIterablepublic double minIfEmpty(double defaultValue)
minIfEmpty in interface DoubleIterablepublic double average()
average in interface DoubleIterablepublic double median()
median in interface DoubleIterablepublic double[] toSortedArray()
toSortedArray in interface DoubleIterablepublic MutableDoubleList toSortedList()
toSortedList in interface DoubleIterablepublic void writeExternal(ObjectOutput out) throws IOException
writeExternal in interface ExternalizableIOExceptionpublic void readExternal(ObjectInput in) throws IOException, ClassNotFoundException
readExternal in interface ExternalizableIOExceptionClassNotFoundExceptionpublic void compact()
public MutableFloatSet keySet()
keySet in interface FloatDoubleMappublic MutableDoubleCollection values()
values in interface FloatDoubleMapCopyright © 2004–2017. All rights reserved.