public interface MapFromStringToInt
String
to int
.JsMapFromStringToInt
Modifier and Type | Method and Description |
---|---|
int |
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,
int value)
Associates a value to the specified key.
|
void |
remove(String key)
Removes the value associated with the specified value, if one exists.
|
ArrayOfInt |
values()
The values contained in this map.
|
int get(String key)
boolean hasKey(String key)
ArrayOfString keys()
void put(String key, int value)
void remove(String key)
ArrayOfInt values()
Copyright © 2018. All rights reserved.