|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use FeatureId | |
---|---|
org.geotools.arcsde.data | DataStore implementation for the ArcSDE 8.x and 9.x spatial gateway. |
org.geotools.data | Defines the DataStoreAPI via which all data is imported or exported. |
org.geotools.data.complex | This package contains the implementation of a ComplexDataStore, Author note: though this "Complex" datastore has born to provide complex features out of a simple features data source, it may be better called a DerivativeDataStore or something like that, you'll see why later. |
org.geotools.data.directory | |
org.geotools.data.gen | |
org.geotools.data.store | |
org.geotools.data.transform | |
org.geotools.data.wfs.v1_0_0 | |
org.geotools.feature | |
org.geotools.feature.collection | Helper classes for implementing FeatureCollections. |
org.geotools.feature.simple | |
org.geotools.filter | |
org.geotools.filter.identity | |
org.geotools.jdbc | |
org.geotools.wfs | |
org.opengis.feature | Representation a features on a map. |
org.opengis.filter | Filters features according their properties. |
org.opengis.filter.identity | An Identifier indicates object identity requested during data query or reference. |
Uses of FeatureId in org.geotools.arcsde.data |
---|
Methods in org.geotools.arcsde.data that return types with arguments of type FeatureId | |
---|---|
List<FeatureId> |
ArcSdeFeatureStore.addFeatures(FeatureCollection<SimpleFeatureType,SimpleFeature> collection)
|
Uses of FeatureId in org.geotools.data |
---|
Methods in org.geotools.data that return types with arguments of type FeatureId | |
---|---|
List<FeatureId> |
AbstractFeatureStore.addFeatures(FeatureCollection<SimpleFeatureType,SimpleFeature> collection)
|
List<FeatureId> |
FeatureStore.addFeatures(FeatureCollection<T,F> featureCollection)
Adds all features from the feature collection. |
Uses of FeatureId in org.geotools.data.complex |
---|
Methods in org.geotools.data.complex with parameters of type FeatureId | |
---|---|
Feature |
DataAccessRegistry.findFeature(FeatureId id,
Hints hints)
|
Feature |
AppSchemaDataAccess.findFeature(FeatureId id,
Hints hints)
|
Uses of FeatureId in org.geotools.data.directory |
---|
Methods in org.geotools.data.directory that return types with arguments of type FeatureId | |
---|---|
List<FeatureId> |
DirectoryFeatureStore.addFeatures(FeatureCollection collection)
|
Uses of FeatureId in org.geotools.data.gen |
---|
Methods in org.geotools.data.gen that return FeatureId | |
---|---|
FeatureId |
PreGeneralizedSimpleFeature.getIdentifier()
|
Uses of FeatureId in org.geotools.data.store |
---|
Methods in org.geotools.data.store that return types with arguments of type FeatureId | |
---|---|
List<FeatureId> |
ContentFeatureStore.addFeatures(Collection collection)
Adds a collection of features to the store. |
List<FeatureId> |
ContentFeatureStore.addFeatures(FeatureCollection<SimpleFeatureType,SimpleFeature> featureCollection)
Adds a collection of features to the store. |
Uses of FeatureId in org.geotools.data.transform |
---|
Methods in org.geotools.data.transform that return types with arguments of type FeatureId | |
---|---|
List<FeatureId> |
TransformFeatureStore.addFeatures(FeatureCollection<SimpleFeatureType,SimpleFeature> collection)
|
Uses of FeatureId in org.geotools.data.wfs.v1_0_0 |
---|
Methods in org.geotools.data.wfs.v1_0_0 that return types with arguments of type FeatureId | |
---|---|
List<FeatureId> |
WFSFeatureStore.addFeatures(FeatureCollection<SimpleFeatureType,SimpleFeature> collection)
|
List<FeatureId> |
WFSFeatureStore.addFeatures(FeatureReader<SimpleFeatureType,SimpleFeature> reader)
|
Uses of FeatureId in org.geotools.feature |
---|
Methods in org.geotools.feature that return FeatureId | |
---|---|
FeatureId |
FeatureImpl.getIdentifier()
|
FeatureId |
DecoratingFeature.getIdentifier()
|
Constructors in org.geotools.feature with parameters of type FeatureId | |
---|---|
FeatureImpl(Collection<Property> properties,
AttributeDescriptor desc,
FeatureId id)
Create a Feature with the following content. |
|
FeatureImpl(Collection<Property> properties,
FeatureType type,
FeatureId id)
Create a Feature with the following content. |
Uses of FeatureId in org.geotools.feature.collection |
---|
Methods in org.geotools.feature.collection that return types with arguments of type FeatureId | |
---|---|
protected List<FeatureId> |
SubFeatureList.createIndex()
Put this SubFeatureList in touch with its inner index |
Uses of FeatureId in org.geotools.feature.simple |
---|
Fields in org.geotools.feature.simple declared as FeatureId | |
---|---|
protected FeatureId |
SimpleFeatureImpl.id
|
Methods in org.geotools.feature.simple that return FeatureId | |
---|---|
FeatureId |
SimpleFeatureImpl.getIdentifier()
|
Constructors in org.geotools.feature.simple with parameters of type FeatureId | |
---|---|
SimpleFeatureImpl(List<Object> values,
SimpleFeatureType featureType,
FeatureId id)
Builds a new feature based on the provided values and feature type |
|
SimpleFeatureImpl(Object[] values,
SimpleFeatureType featureType,
FeatureId id,
boolean validating)
Fast construction of a new feature. |
|
SimpleFeatureImpl(Object[] values,
SimpleFeatureType featureType,
FeatureId id,
boolean validating,
Map<String,Integer> index)
Fast construction of a new feature. |
Uses of FeatureId in org.geotools.filter |
---|
Methods in org.geotools.filter that return FeatureId | |
---|---|
FeatureId |
FilterFactoryImpl.featureId(String id)
|
FeatureId |
FilterFactoryImpl.featureId(String fid,
String featureVersion)
Creates a new feature id with version information |
Methods in org.geotools.filter with parameters of type FeatureId | |
---|---|
Id |
FilterFactoryImpl.id(FeatureId... fids)
|
Uses of FeatureId in org.geotools.filter.identity |
---|
Classes in org.geotools.filter.identity that implement FeatureId | |
---|---|
class |
FeatureIdImpl
Implementation of FeatureId
This class is mutable under one condition only; during a commit
a datastore can update the internal fid to reflect the real identify
assigned by the database or wfs. |
class |
FeatureIdVersionedImpl
Implementation of FeatureId
This class is mutable under one condition only; during a commit
a datastore can update the internal fid to reflect the real identify
assigned by the database or wfs. |
class |
ResourceIdImpl
Implementation of ResourceId used for Query. |
Methods in org.geotools.filter.identity with parameters of type FeatureId | |
---|---|
boolean |
FeatureIdImpl.equalsExact(FeatureId id)
|
boolean |
FeatureIdVersionedImpl.equalsExact(FeatureId id)
|
boolean |
FeatureIdImpl.equalsFID(FeatureId id)
|
boolean |
FeatureIdVersionedImpl.equalsFID(FeatureId id)
|
Uses of FeatureId in org.geotools.jdbc |
---|
Methods in org.geotools.jdbc that return FeatureId | |
---|---|
FeatureId |
JDBCFeatureReader.ResultSetFeature.getIdentifier()
|
Uses of FeatureId in org.geotools.wfs |
---|
Methods in org.geotools.wfs that return FeatureId | |
---|---|
FeatureId |
CompositeFeatureCollection.getIdentifier()
|
Uses of FeatureId in org.opengis.feature |
---|
Methods in org.opengis.feature that return FeatureId | |
---|---|
FeatureId |
Feature.getIdentifier()
A unique identifier for the feature. |
Uses of FeatureId in org.opengis.filter |
---|
Methods in org.opengis.filter that return FeatureId | |
---|---|
FeatureId |
FilterFactory.featureId(String id)
Creates a new feautre id from a string |
FeatureId |
FilterFactory.featureId(String fid,
String featureVersion)
Creates a new feature id with version information |
Methods in org.opengis.filter with parameters of type FeatureId | |
---|---|
Id |
FilterFactory2.id(FeatureId... fids)
|
Uses of FeatureId in org.opengis.filter.identity |
---|
Subinterfaces of FeatureId in org.opengis.filter.identity | |
---|---|
interface |
ResourceId
Resource identifier as per FES 2.0. |
Methods in org.opengis.filter.identity with parameters of type FeatureId | |
---|---|
boolean |
FeatureId.equalsExact(FeatureId id)
Check if the provided FeatureId is an exact match (including any optional version information). |
boolean |
FeatureId.equalsFID(FeatureId id)
Checks if the provided FeatureId reflects the same feature. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |