public class WebExtensionPropertyCollection
| Constructor Summary |
|---|
| Property Getters/Setters Summary | ||
|---|---|---|
int | getCount() | |
WebExtensionProperty | get(int index) | |
Gets the property of web extension by the index.
|
||
WebExtensionProperty | get(java.lang.String name) | |
Gets the property of web extension.
|
||
| Method Summary | ||
|---|---|---|
int | add(java.lang.Object value) | |
Reserved for internal use. |
||
int | add(java.lang.String name, java.lang.String value) | |
Adds web extension property.
|
||
void | clear() | |
boolean | contains(java.lang.Object value) | |
Reserved for internal use. |
||
int | indexOf(java.lang.Object value) | |
Reserved for internal use. |
||
java.util.Iterator | iterator() | |
void | removeAt(int index) | |
void | removeAt(java.lang.String name) | |
Remove the property by the name.
|
||
public int getCount()
public WebExtensionProperty get(int index)
index - The index.public WebExtensionProperty get(java.lang.String name)
name - The name of property.public int add(java.lang.String name, java.lang.String value)
name - The name of property.value - The value of property.public void removeAt(java.lang.String name)
name - The name of the property.public void clear()
public void removeAt(int index)
public java.util.Iterator iterator()
public boolean contains(java.lang.Object value)
public int add(java.lang.Object value)
public int indexOf(java.lang.Object value)