public class JavaScriptCollection extends Object
This class represents collection of JavaScript
Modifier and Type | Method and Description |
---|---|
String |
get_Item(String key)
Gets or sets JavaScrip from collection by its key.
|
List<String> |
getKeys()
List of keys in JavaScript collection.
|
boolean |
remove(String key)
Removes JavaScript by its name.
|
void |
set_Item(String key,
String value)
Gets or sets JavaScrip from collection by its key.
|
public List<String> getKeys()
List of keys in JavaScript collection.
List<String> collection
public String get_Item(String key)
Gets or sets JavaScrip from collection by its key.
key
- String objectpublic void set_Item(String key, String value)
Gets or sets JavaScrip from collection by its key.
key
- String objectvalue
- String objectpublic boolean remove(String key)
Removes JavaScript by its name.
key
- String object