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