public interface MapFromStringToNumber
String
to double
.JsMapFromStringToNumber
Modifier and Type | Method and Description |
---|---|
double |
get(String key)
Retrieves a value for the specified key.
|
boolean |
hasKey(String key)
Indicates whether the map contains a value for the specified key.
|
ArrayOfString |
keys()
The keys contained within this map.
|
void |
put(String key,
double value)
Associates a value to the specified key.
|
void |
remove(String key)
Removes the value associated with the specified value, if one exists.
|
ArrayOfNumber |
values()
The values contained in this map.
|
double get(String key)
boolean hasKey(String key)
ArrayOfString keys()
void put(String key, double value)
void remove(String key)
ArrayOfNumber values()
Copyright © 2018. All rights reserved.