org.apache.wicket.util.value |
wicket.util.value package
Casting utilities.
|
Java Source File Name | Type | Comment |
AttributeMap.java | Class | ValueMap for attributes. |
CopyOnWriteValueMap.java | Class | A implementation that takes a IValueMap that could be immutable but makes a
copy when a call is made that wanted to change the map. |
Count.java | Class | A class for counting things. |
IntValue.java | Class | A base class for value classes based on a Java int primitive which want to
implement standard operations on that value without the pain of aggregating a
Integer object. |
IValueMap.java | Interface | A Map interface that holds values, parses strings and exposes a variety of
convenience methods. |
LongValue.java | Class | A base class for value classes based on a Java long primitive which want to
implement standard operations on that value without the pain of aggregating a
Long object. |
ValueMap.java | Class | A Map implementation that holds values, parses strings and exposes a variety
of convenience methods.
In addition to a no-arg constructor and a copy constructor that takes a Map
argument, ValueMaps can be constructed using a parsing constructor.
ValueMap(String) will parse values from the string in comma separated
key/value assignment pairs. |
ValueMapTest.java | Class | |