|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use AbstractAuthorityFactory | |
---|---|
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). |
Uses of AbstractAuthorityFactory in org.geotools.referencing.factory |
---|
Subclasses of AbstractAuthorityFactory in org.geotools.referencing.factory | |
---|---|
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 |
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 |
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. |
Methods in org.geotools.referencing.factory that return AbstractAuthorityFactory | |
---|---|
protected abstract AbstractAuthorityFactory |
DeferredAuthorityFactory.createBackingStore()
Creates the backing store authority factory. |
Methods in org.geotools.referencing.factory with parameters of type AbstractAuthorityFactory | |
---|---|
protected boolean |
DeferredAuthorityFactory.canDisposeBackingStore(AbstractAuthorityFactory backingStore)
Returns true if the backing store can be disposed now. |
Constructors in org.geotools.referencing.factory with parameters of type AbstractAuthorityFactory | |
---|---|
BufferedAuthorityFactory(AbstractAuthorityFactory factory)
Constructs an instance wrapping the specified factory with a default number of entries to keep by strong reference. |
|
BufferedAuthorityFactory(AbstractAuthorityFactory factory,
int maxStrongReferences)
Constructs an instance wrapping the specified factory. |
|
OrderedAxisAuthorityFactory(AbstractAuthorityFactory factory,
Hints userHints,
AxisDirection[] axisOrder)
Creates a factory which will reorder the axis of all objects created by the supplied factory. |
|
ThreadedAuthorityFactory(AbstractAuthorityFactory factory)
Constructs an instance wrapping the specified factory with a default number of entries to keep by strong reference. |
|
ThreadedAuthorityFactory(AbstractAuthorityFactory factory,
int maxStrongReferences)
Constructs an instance wrapping the specified factory. |
Uses of AbstractAuthorityFactory in org.geotools.referencing.factory.epsg |
---|
Subclasses of AbstractAuthorityFactory 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 |
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 |
ThreadedAccessEpsgFactory
Connection to the EPSG database in MS-Access format using JDBC-ODBC bridge. |
class |
ThreadedEpsgFactory
Base class for EPSG factories to be registered in ReferencingFactoryFinder . |
class |
ThreadedHsqlEpsgFactory
Connection to the EPSG database in HSQL database engine format using JDBC. |
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. |
Methods in org.geotools.referencing.factory.epsg that return AbstractAuthorityFactory | |
---|---|
protected AbstractAuthorityFactory |
ThreadedEpsgFactory.createBackingStore()
Creates the backing store authority factory. |
protected AbstractAuthorityFactory |
LongitudeFirstFactory.createBackingStore()
Returns the factory instance (usually ThreadedEpsgFactory )
to be used as the backing store. |
protected AbstractAuthorityFactory |
LongitudeFirstEpsgDecorator.createBackingStore()
Returns the factory instance (usually ThreadedEpsgFactory )
to be used as the backing store. |
protected AbstractAuthorityFactory |
FactoryUsingWKT.createBackingStore()
Creates the backing store authority factory. |
protected AbstractAuthorityFactory |
ThreadedPostgreSQLEpsgFactory.createBackingStore(Hints hints)
Returns the backing-store factory for PostgreSQL syntax. |
protected AbstractAuthorityFactory |
ThreadedAccessEpsgFactory.createBackingStore(Hints hints)
Returns the backing-store factory for MS-Access syntax. |
protected AbstractAuthorityFactory |
ThreadedHsqlEpsgFactory.createBackingStore(Hints hints)
Returns the backing-store factory for HSQL syntax. |
protected AbstractAuthorityFactory |
ThreadedEpsgFactory.createBackingStore(Hints hints)
Creates the backing store for the specified data source. |
AbstractAuthorityFactory |
AccessDataSource.createFactory(Hints hints)
Deprecated. Open a connection and creates an EPSG factory for it. |
Methods in org.geotools.referencing.factory.epsg with parameters of type AbstractAuthorityFactory | |
---|---|
protected boolean |
ThreadedEpsgFactory.canDisposeBackingStore(AbstractAuthorityFactory backingStore)
Returns true if the backing store can be disposed now. |
Uses of AbstractAuthorityFactory in org.geotools.referencing.factory.wms |
---|
Subclasses of AbstractAuthorityFactory 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. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |