Inheritance diagram for MutableDictionary:
Public Member Functions | |
void | put (char[] name, char[] value) |
void | remove (char[] name) |
void | reset () |
void | loader (char[] name, char[] value) |
Private Member Functions | |
char[] | get (char[] name) |
void | optimize () |
int | opApply (int(*dg)(inout DElement element)) |
Definition at line 131 of file Dictionary.d.
|
Place a name/value pair into the dictionary. If the name already exists, the prior value is replaced. Definition at line 140 of file Dictionary.d. Referenced by loader(), and ServletContext::this(). |
|
Delete the named entry from the dictionary Definition at line 151 of file Dictionary.d. |
|
Clear all dictionary entries Definition at line 163 of file Dictionary.d. |
|
loader for use with Properties.load () Definition at line 180 of file Dictionary.d. References put(). |
|
Return the dictionary entry with the given name, or null if there is no such name. Definition at line 74 of file Dictionary.d. References Dictionary::dictionary. Referenced by ServletContext::getMimeType(). |
|
Perform some post population optimization. Definition at line 87 of file Dictionary.d. References Dictionary::dictionary. Referenced by ServletContext::this(). |
|
Iterate over the entire dictionary Definition at line 98 of file Dictionary.d. References Dictionary::dictionary, DElement::name, and DElement::value. |