org.apache.xml.utils
public class StringToStringTableVector extends Object
UNKNOWN: internal
| Constructor Summary | |
|---|---|
| StringToStringTableVector()
Default constructor. | |
| StringToStringTableVector(int blocksize)
Construct a StringToStringTableVector, using the given block size.
| |
| Method Summary | |
|---|---|
| void | addElement(StringToStringTable value)
Append a StringToStringTable object onto the vector.
|
| boolean | contains(StringToStringTable s)
Tell if the table contains the given StringToStringTable.
|
| boolean | containsKey(String key)
Given a string, find out if there is a value in this table
that matches the key.
|
| StringToStringTable | elementAt(int i)
Get the nth element.
|
| String | get(String key)
Given a string, find the last added occurance value
that matches the key.
|
| int | getLength()
Get the length of the list.
|
| void | removeLastElem()
Remove the last element. |
| int | size()
Get the length of the list.
|
Parameters: blocksize Size of blocks to allocate
Parameters: value StringToStringTable object to add
Parameters: s The StringToStringTable to find
Returns: True if the StringToStringTable is found
Parameters: key String to look for
Returns: True if the string was found in table, null if not
Parameters: i Index of element to find
Returns: The StringToStringTable object at the given index
Parameters: key String to look up
Returns: the last added occurance value that matches the key or null if not found.
Returns: Number of StringToStringTable objects in the list
Returns: Number of StringToStringTable objects in the list