Uses of Class
org.geotools.factory.AbstractFactory

Packages that use AbstractFactory
org.geotools.coverage.grid GridCoverage2D implementation. 
org.geotools.image.io.mosaic An image reader implemented as a mosaic of other image readers. 
org.geotools.referencing.crs Coordinate reference systems implementation. 
org.geotools.referencing.factory Base classes for factories and authority factories. 
org.geotools.referencing.factory.epsg Authority factories for the EPSG database. 
org.geotools.referencing.factory.wms Provides coordinate reference systems specified in the Web Map Service specification (ISO 19128). 
org.geotools.referencing.operation Coordinate operation implementation. 
 

Uses of AbstractFactory in org.geotools.coverage.grid
 

Subclasses of AbstractFactory in org.geotools.coverage.grid
 class GridCoverageFactory
          A factory for grid coverage objects.
 

Uses of AbstractFactory in org.geotools.image.io.mosaic
 

Subclasses of AbstractFactory in org.geotools.image.io.mosaic
 class TileManagerFactory
          Creates TileManager instances from a collection of tiles.
 

Uses of AbstractFactory in org.geotools.referencing.crs
 

Subclasses of AbstractFactory in org.geotools.referencing.crs
 class EPSGCRSAuthorityFactory
          Deprecated. Uses one of the other EPSG factories backed by a database instead.
 

Uses of AbstractFactory in org.geotools.referencing.factory
 

Subclasses of AbstractFactory in org.geotools.referencing.factory
 class AbstractAuthorityFactory
          Base class for authority factories.
 class AbstractAuthorityMediator
          An authority mediator that consults (a possibily shared) cache before delegating the generation of the content to a "worker" authority factory.
 class AbstractCachedAuthorityFactory
          An authority factory that consults (a possibly shared) cache before generating content itself.
 class AbstractEpsgMediator
          Abstract implementation for EPSG (has a DataSource reference inside).
 class AllAuthoritiesFactory
          An authority factory that delegates the object creation to an other factory determined from the authority name in the code.
 class AuthorityFactoryAdapter
          An authority factory which delegates CRS, CS or datum objects creation to some other factory implementations.
 class BufferedAuthorityFactory
          An authority factory that caches all objects created by an other factory.
 class CachedAuthorityDecorator
          An authority factory that caches all objects created by delegate factories.
 class CachedCRSAuthorityDecorator
          An authority factory that caches all objects created by the delegate CRSAuthorityFactory.
 class DatumAliases
          A datum factory that add aliases to a datum name before to delegates the datum creation to an other factory.
 class DeferredAuthorityFactory
          A buffered authority factory which will defer the creation of a backing store until when first needed.
 class DirectAuthorityFactory
          The base class for authority factories that create referencing object directly.
 class FallbackAuthorityFactory
          A factory which delegates all object creation to a primary factory, and fallback on an other one if the primary factory failed.
 class HTTP_AuthorityFactory
          Deprecated. This class will move in a org.geotools.referencing.factory.web package in Geotools 2.5, in order to put together other web-related factories. Don't use this class directly. You should not need to anyway - use ReferencingFactoryFinder instead, which will continue to work no matter where this class is located.
 class ManyAuthoritiesFactory
          An authority factory that delegates the object creation to an other factory determined from the authority name in the code.
 class OrderedAxisAuthorityFactory
          An authority factory which delegates all the work to an other factory, and reorder the axis in some pre-determined order.
 class PropertyAuthorityFactory
          Default implementation for a coordinate reference system authority factory backed by a property file.
 class ReferencingFactory
          Base class for all factories in the referencing module.
 class ReferencingFactoryContainer
          A set of utilities methods working on factories.
 class ReferencingObjectFactory
          Builds Geotools implementations of CRS, CS and datum objects.
 class ThreadedAuthorityFactory
          An authority factory that caches all objects created by an other factory.
 class TransformedAuthorityFactory
          An authority factory which returns modified CRS, CS or datum objects from other factory implementations.
 class URN_AuthorityFactory
          Deprecated. This class will move in a org.geotools.referencing.factory.web package in Geotools 2.5, in order to put together other web-related factories. Don't use this class directly. You should not need to anyway - use ReferencingFactoryFinder instead, which will continue to work no matter where this class is located.
 

Uses of AbstractFactory in org.geotools.referencing.factory.epsg
 

Subclasses of AbstractFactory in org.geotools.referencing.factory.epsg
 class AbstractEpsgFactory
          A coordinate reference system factory backed by the EPSG database tables.
 class AccessDialectEpsgFactory
          This factory uses the MS-Access dialect of SQL.
 class AnsiDialectEpsgFactory
          An EPSG factory for the database generated by SQL scripts rather than the MS-Access one.
 class DefaultFactory
          Deprecated. Please use ThreadedEpsgFactory instead, the name DefaultFactory was viewed as confusing
 class DirectEpsgFactory
          A coordinate reference system factory backed by the EPSG database tables.
 class EsriExtension
          Extends the EPSG database with Coordinate Reference Systems defined by ESRI.
 class FactoryUsingAnsiSQL
          Deprecated. Please use AnsiDialectEpsgFactory.
 class FactoryUsingOracleSQL
          Deprecated. Please use OracleDialectEpsgFactory.
 class FactoryUsingSQL
          Deprecated. Please use AccessDialectEpsgFactory.
 class FactoryUsingWKT
          Authority factory for Coordinate Reference Systems beyong the one defined in the EPSG database.
 class HsqlDialectEpsgMediator
          Mediator which delegates the creation of referencing objects to the HsqlDialectEpsgFactory.
 class LongitudeFirstEpsgDecorator
          An EPSG authority factory using (longitude, latitude) axis order.
 class LongitudeFirstFactory
          An EPSG authority factory using (longitude, latitude) axis order.
 class OracleDialectEpsgFactory
          An EPSG factory suitable for Oracle SQL syntax.
 class OracleDialectEpsgMediator
          Mediator which delegates the creation of referencing objects to the OracleDialectEpsgFactory.
 class ThreadedEpsgFactory
          Base class for EPSG factories to be registered in ReferencingFactoryFinder.
 class ThreadedH2EpsgFactory
          Connection to the EPSG database in H2 database engine format using JDBC.
 class ThreadedHsqlEpsgFactory
          Connection to the EPSG database in HSQL database engine format using JDBC.
 class ThreadedOracleEpsgFactory
          Connection to the EPSG database in Oracle database engine using a JDBC datasource.
 class ThreadedPostgreSQLEpsgFactory
          Connection to the EPSG database in PostgreSQL database engine using JDBC.
 class UnnamedExtension
          Provides common Coordinate Reference Systems not found in the standard EPSG database.
 

Uses of AbstractFactory in org.geotools.referencing.factory.wms
 

Subclasses of AbstractFactory in org.geotools.referencing.factory.wms
 class AutoCRSFactory
          Deprecated. This class will move in a org.geotools.referencing.factory.web package in a future Geotools version, in order to put together other web-related factories defined outside the WMS specification. Don't use this class directly. You should not need to anyway - use ReferencingFactoryFinder instead, which will continue to work no matter where this class is located.
 class WebCRSFactory
          Deprecated. This class will move in a org.geotools.referencing.factory.web package in a future Geotools version, in order to put together other web-related factories defined outside the WMS specification. Don't use this class directly. You should not need to anyway - use ReferencingFactoryFinder instead, which will continue to work no matter where this class is located.
 

Uses of AbstractFactory in org.geotools.referencing.operation
 

Subclasses of AbstractFactory in org.geotools.referencing.operation
 class AbstractCoordinateOperationFactory
          Base class for coordinate operation factories.
 class AuthorityBackedFactory
          A coordinate operation factory extended with the extra informations provided by an authority factory.
 class BufferedCoordinateOperationFactory
          Caches the coordinate operations created by an other factory.
 class DefaultCoordinateOperationFactory
          Creates coordinate operations.
 class DefaultMathTransformFactory
          Low level factory for creating math transforms.
 



Copyright © 1996-2010 Geotools. All Rights Reserved.