String
|
add(String key, String value)
Appends a value to a collection mapped by the key specified.
|
String
|
add(String key, String value, String delimiter)
Appends a value to a collection mapped by the key specified.
|
LinkedList
|
addKeyValue(String key, Object value)
Adds an Object to the collection defined by the key.
|
Object
|
addObject(String key, Object value)
Appends an Object to a collection mapped by the key specified.
|
LinkedList
|
getAllValues(String keyName)
Retrieves all values associated with the key.
|
MarkupOutput
|
getDebugOut()
Get the Debug Information into the output
|
int
|
getIntValue(String keyName, int valueIndex, int defaultValue)
Parses the value of given request key to an integer.
|
int
|
getIntValue(String keyName, int valueIndex)
Parses the value of given request key to an integer.
|
Enumeration
|
getKeyListByPrefix(String prefix)
Returns an enumeration over all the keys with the specified prefix.
|
String
|
getName(int nameIndex)
Returns the key at the specified position from the current collection.
|
int
|
getNameCount()
Returns the total number of keys stored in the collection.
|
Object
|
getObjectAtIndex(String keyName, int valueIndex)
Retrieves the Object located at a specific index within the collection
defined by keyName.
|
String
|
getValue(String keyName)
Returns from this collection a comma separated string of all the
values mapped by the specified keyName .
|
String
|
getValue(String keyName, int valueIndex)
Returns the value at the specified position mapped by the specified
keyName.
|
int
|
getValueCount(String keyName)
Returns from this collection the number of values mapped with the
keyName.
|
Object
|
getValueObject(String keyName, int valueIndex)
Returns the Object at the specified position mapped by the specified
keyName.
|
Enumeration
|
getValueObject(String key)
Returns the collection of all the values mapped by the specified keyName .
|
void
|
initializeRequestKeys()
Initializes the key-value collection from various sources.
|
boolean
|
isEmpty()
Returns whether the value collection is empty.
|
void
|
remove(String key)
Removes the argument with the given key.
|
void
|
setInitialized(boolean initialized)
Sets a flag indicating whether this collection has been initialized.
|
void
|
setObjectAtIndex(String key, Object value, int index)
Used by setValue and setValueObject to do the actual work.
|
void
|
setValue(String key, String value, int index)
Replaces the value at a specific index for a given key.
|
void
|
setValueObject(String key, Object value, int index)
Replaces the Object at a specific index for a given key.
|
String
|
toString()
|