public class CustomPropertyCollection
Property Getters/Setters Summary | ||
---|---|---|
int | getCount() | |
CustomProperty | get(int index) | |
Gets the custom property by the specific index.
|
||
CustomProperty | get(java.lang.String name) | |
Gets the custom property by the property name.
|
Method Summary | ||
---|---|---|
int | add(java.lang.Object value) | |
Reserved for internal use. |
||
int | add(java.lang.String name, java.lang.String value) | |
Adds custom property information.
|
||
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) | |
public int getCount()
public CustomProperty get(int index)
index
- The index.public CustomProperty get(java.lang.String name)
name
- The property name.public int add(java.lang.String name, java.lang.String value)
name
- The name of the custom property.value
- The value of the custom 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)