org.geotools.util

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » GIS » GeoTools 2.4.1 » org.geotools.util 
org.geotools.util
package org.geotools.util Contains utilities and addition to the collection framework. Some classes implements the {@link java.util.Set} interface and provides facilities for mutually exclusive set, caching or handling ranges of values.
Java Source File NameTypeComment
AbstractInternationalString.javaClass A that has been internationalized into several .
AttributeConverterFactory.javaClass
BooleanConverterFactory.javaClass ConverterFactory for handling boolean conversions.
BooleanConverterFactoryTest.javaClass
CanonicalSet.javaClass A canonical set of objects, used to optimize memory use. The operation of this set is similar in spirit to the String.intern method. The following example shows a convenient way to use CanonicalSet as an internal pool of immutable objects.
 public Foo create(String definition) {
 Foo created = new Foo(definition);
 return (Foo) canonicalSet.unique(created);
 }
 
The CanonicalSet has a CanonicalSet.get method that is not part of the Set interface.
CanonicalSetTest.javaClass Test the CanonicalSet .
CheckedArrayList.javaClass Acts as a typed java.util.List while we wait for Java 5.0.
CheckedCollection.javaInterface Collection that ensures that all elements are assignable to a given base type.
CheckedHashMap.javaClass Acts as a typed java.util.Map while we wait for Java 5.0.
CheckedHashSet.javaClass Acts as a typed java.util.Set while we wait for Java 5.0.
CommonHandler.javaClass An adapter that redirect all Java logging events to the Apache's commons logging framework.
CommonsConverterFactory.javaClass ConverterFactory based on the apache commons org.apache.commons.beanutils.Converter interface.
Converter.javaInterface Converts values of one type into another.
ConverterFactory.javaInterface Factory used to create instances of Converter .
Converters.javaClass Convenience class for converting an object from one type to an object of another.
DateConverterFactory.javaClass
DerivedMap.javaClass A map whose keys are derived from an other map.
DerivedSet.javaClass A set whose values are derived from an other set.
DisjointSet.javaClass A set which is disjoint from others DisjointSet s.
DisjointSetTest.javaClass Test the DisjointSet class.
GenericName.javaClass Base class for and structure for type and attribute name in the context of name spaces.
GeometryConverterFactory.javaClass Converter factory performing converstions among geometric types.
GeometryConverterFactoryTest.javaClass
GrowableInternationalString.javaClass An implementation of international string using a of strings for different .
GTContainer.javaClass This "container" is used by several utility classes to get their game on.
InternationalStringTest.javaClass Tests the various InternationalString implementations.
KeySortedList.javaClass List of elements sorted by a key which is not the element itself.
KeySortedListTest.javaClass Tests KeySortedList .
ListenerList.javaClass This class is used to maintain a list of listeners, and is used in the implementations of several classes within JFace which allow you to register listeners of various kinds. It is a fairly lightweight object, occupying minimal space when no listeners are registered.

Note that the add method checks for and eliminates duplicates based on identity (not equality).

LocalName.javaClass Identifier within a name space for a local object.
LoggedFormat.javaClass Wraps a Format object in order to either parse fully a string, or log a warning. This class provides a LoggedFormat.parse method which performs the following tasks:

  • Checks if the string was fully parsed and log a warning if it was not.
Logging.javaClass A set of utilities method for configuring loggings in Geotools.
LRULinkedHashMap.javaClass A Map with a fixed maximum size which removes the least recently used (LRU) entry if an entry is added when full.
MapEntry.javaClass A default implementation of java.util.Map.Entry which map an arbitrary key-value pairs.
MeasurementRange.javaClass A range of numbers associated with a unit of measurement.
MeasurementRangeTest.javaClass Tests the MeasurementRange .
MemberNameImpl.javaClass MemberName is used in a Record as part of a Map.
MonolineFormatter.javaClass A formatter writting log messages on a single line.
MonolineFormatterTest.javaClass Test the MonolineFormatter class.
NameFactory.javaClass A factory for GenericName objects.
Namespace.javaClass
NullProgressListener.javaClass A default progress listener implementation suitable for subclassing.
NumberRange.javaClass A range of numbers.
NumericConverterFactory.javaClass ConverterFactory which converts between the "standard" numeric types.
NumericConverterFactoryTest.javaClass
ProgressListener.javaInterface Monitor the progress of some lengthly operation.
RangeSet.javaClass An ordered set of ranges.
RangeSetTest.javaClass Test the RangeSet implementation.
RecordTypeImpl.javaClass Used to provde a record of data (in a manner similar to a strongly typed Map).

Please note that a record is *strongly* typed (and may be better thought of as a mathmatical tuple).

ResourceInternationalString.javaClass An international string backed by a .
ScopedName.javaClass Fully qualified identifier for an object.
SimpleInternationalString.javaClass A simple international string consisting of a single string for all locales.
Singleton.javaClass A mutable set containing only one element.
SoftValueHashMap.javaClass A hash map implementation that uses , leaving memory when an entry is not used anymore and memory is low.

This map implementation actually maintains some of the first entries as hard references. Only oldest entries are retained by soft references, in order to avoid too aggressive garbage collection.

SoftValueHashMapTest.javaClass Tests SoftValueHashMap .
TemporalConverterFactory.javaClass Converter factory which created converting between the various temporal types.
TemporalConverterFactoryTest.javaClass
UnsupportedImplementationException.javaClass Throws when an operation can't use arbitrary implementation of an interface, and a given instance doesn't meet the requirement.
Version.javaClass Holds a version number.
VersionTest.javaClass Tests the Version class, especially the compareTo method.
WeakCollectionCleaner.javaClass A thread invoking Reference.clear on each enqueded reference.
WeakHashSet.javaClass A set of objects hold by weak references.
WeakValueHashMap.javaClass A hashtable-based Map implementation with weak values.
WeakValueHashMapTest.javaClass Test the WeakHashSet .
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.