This map is used to convert values from the map to a specified type, via the {@link #get(String,Class)} method. Usage:
MetadataMap map = new MetadataMap(); map.put( "one", "1"); map.get( "one" ) ==> "1" map.get( "one", Integer.class) ==> 1 map.get( "one", Double.class ) ==> 1.0@author Justin Deoliveira, OpenGeo
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|