deegree-core-3.0-pre-nightly (2010/03/05 00:01) - official

Uses of Interface
org.deegree.feature.Property

Packages that use Property
org.deegree.commons.dataaccess.dbase   
org.deegree.feature   
org.deegree.feature.persistence   
org.deegree.feature.persistence.memory   
org.deegree.feature.persistence.postgis   
org.deegree.feature.types   
org.deegree.feature.xpath   
org.deegree.gml.feature   
 

Uses of Property in org.deegree.commons.dataaccess.dbase
 

Methods in org.deegree.commons.dataaccess.dbase that return types with arguments of type Property
 HashMap<SimplePropertyType,Property<?>> DBFReader.getEntry(int num)
           
 

Uses of Property in org.deegree.feature
 

Classes in org.deegree.feature that implement Property
 class GenericProperty<T>
          TODO add documentation here
 

Methods in org.deegree.feature that return Property
 Property<Geometry>[] GenericFeature.getGeometryProperties()
           
 Property<Geometry>[] GenericSimpleFeature.getGeometryProperties()
           
 Property<Geometry>[] Feature.getGeometryProperties()
          Returns all geometry-valued properties in order.
 Property<Geometry>[] GenericFeatureCollection.getGeometryProperties()
           
 Property<?>[] GenericFeature.getProperties()
           
 Property<?>[] GenericSimpleFeature.getProperties()
           
 Property<?>[] Feature.getProperties()
          Returns all properties in order, excluding standard GML properties such as gml:name.
 Property<?>[] GenericFeatureCollection.getProperties()
           
 Property<?>[] Feature.getProperties(GMLVersion version)
          Returns all properties in order, including standard GML properties.
 Property<?>[] AbstractFeature.getProperties(GMLVersion version)
           
 Property<?>[] GenericFeature.getProperties(QName propName)
           
 Property<?>[] GenericSimpleFeature.getProperties(QName propName)
           
 Property<?>[] Feature.getProperties(QName propName)
          Returns the properties with the given name, in order.
 Property<?>[] GenericFeatureCollection.getProperties(QName propName)
           
 Property<?>[] Feature.getProperties(QName propName, GMLVersion version)
          Returns the properties with the given name, in order.
 Property<?>[] AbstractFeature.getProperties(QName propName, GMLVersion version)
           
 Property<?> GenericFeature.getProperty(QName propName)
           
 Property<?> GenericSimpleFeature.getProperty(QName propName)
           
 Property<?> Feature.getProperty(QName propName)
          Returns the property with the given name.
 Property<?> GenericFeatureCollection.getProperty(QName propName)
           
 Property<?> Feature.getProperty(QName propName, GMLVersion version)
          Returns the property with the given name.
 Property<?> AbstractFeature.getProperty(QName propName, GMLVersion version)
           
 

Method parameters in org.deegree.feature with type arguments of type Property
 void GenericFeature.setProperties(List<Property<?>> props)
           
 void GenericSimpleFeature.setProperties(List<Property<?>> props)
           
 void Feature.setProperties(List<Property<?>> props)
          Called during construction to initialize the properties of the feature.
 void GenericFeatureCollection.setProperties(List<Property<?>> props)
           
 void Feature.setProperties(List<Property<?>> props, GMLVersion version)
          Called during construction to initialize the properties of the feature.
 void AbstractFeature.setProperties(List<Property<?>> props, GMLVersion version)
           
 

Constructor parameters in org.deegree.feature with type arguments of type Property
GenericFeature(GenericFeatureType ft, String fid, List<Property<?>> props, GMLVersion version)
          Creates a new GenericFeature instance.
GenericFeatureCollection(FeatureCollectionType ft, String fid, List<Property<?>> props, GMLVersion version)
          Creates a new GenericFeatureCollection instance with type information and content specified using properties.
 

Uses of Property in org.deegree.feature.persistence
 

Method parameters in org.deegree.feature.persistence with type arguments of type Property
 int FeatureStoreTransaction.performUpdate(QName ftName, List<Property<?>> replacementProps, Filter filter, Lock lock)
          Performs an update operation against the FeatureStore.
 

Uses of Property in org.deegree.feature.persistence.memory
 

Method parameters in org.deegree.feature.persistence.memory with type arguments of type Property
 int MemoryFeatureStoreTransaction.performUpdate(QName ftName, List<Property<?>> replacementProps, Filter filter, Lock lock)
           
 

Uses of Property in org.deegree.feature.persistence.postgis
 

Method parameters in org.deegree.feature.persistence.postgis with type arguments of type Property
 int PostGISFeatureStoreTransaction.performUpdate(QName ftName, List<Property<?>> replacementProps, Filter filter, Lock lock)
           
 

Uses of Property in org.deegree.feature.types
 

Method parameters in org.deegree.feature.types with type arguments of type Property
 Feature GenericFeatureCollectionType.newFeature(String fid, List<Property<?>> props, GMLVersion version)
           
 Feature GenericFeatureType.newFeature(String fid, List<Property<?>> props, GMLVersion version)
           
 Feature FeatureType.newFeature(String fid, List<Property<?>> props, GMLVersion version)
          Creates a new Feature instance (that is of this type).
 

Uses of Property in org.deegree.feature.xpath
 

Methods in org.deegree.feature.xpath that return Property
 Property<?> PropertyNode.getProperty()
           
 

Constructors in org.deegree.feature.xpath with parameters of type Property
PropertyNode(FeatureNode parent, Property<?> prop)
           
 

Uses of Property in org.deegree.gml.feature
 

Methods in org.deegree.gml.feature that return Property
 Property<Geometry>[] FeatureReference.getGeometryProperties()
           
 Property<?>[] FeatureReference.getProperties()
           
 Property<?>[] FeatureReference.getProperties(GMLVersion version)
           
 Property<?>[] FeatureReference.getProperties(QName propName)
           
 Property<?>[] StandardGMLFeatureProps.getProperties(QName propName, GMLVersion version)
          Returns the standard GML properties with the given name.
 Property<?>[] FeatureReference.getProperties(QName propName, GMLVersion version)
           
 Property<?> FeatureReference.getProperty(QName propName)
           
 Property<?> StandardGMLFeatureProps.getProperty(QName propName, GMLVersion version)
          Returns the standard GML property with the given name.
 Property<?> FeatureReference.getProperty(QName propName, GMLVersion version)
           
 Property<?> GMLFeatureReader.parseProperty(XMLStreamReaderWrapper xmlStream, PropertyType propDecl, CRS crs, int occurence)
          Returns the object representation for the given property element.
 

Methods in org.deegree.gml.feature that return types with arguments of type Property
static Pair<StandardGMLFeatureProps,List<Property<?>>> StandardGMLFeatureProps.create(List<Property<?>> props, GMLVersion version)
          Creates a StandardGMLFeatureProps instances from the given list of Property objects and returns the remaining properties that are not GML default properties.
 Collection<Property<?>> StandardGMLFeatureProps.getProperties(GMLVersion version)
          Returns the corresponding Property instances for a specific GML version.
 

Methods in org.deegree.gml.feature with parameters of type Property
protected  void GMLFeatureWriter.export(Property<?> property, int inlineLevels)
           
 

Method parameters in org.deegree.gml.feature with type arguments of type Property
static Pair<StandardGMLFeatureProps,List<Property<?>>> StandardGMLFeatureProps.create(List<Property<?>> props, GMLVersion version)
          Creates a StandardGMLFeatureProps instances from the given list of Property objects and returns the remaining properties that are not GML default properties.
 void FeatureReference.setProperties(List<Property<?>> props)
           
 void FeatureReference.setProperties(List<Property<?>> props, GMLVersion version)
           
 


deegree-core-3.0-pre-nightly (2010/03/05 00:01) - official

an open source project founded by lat/lon, Bonn, Germany.
For more information visit: http://www.deegree.org

]]>