Uses of Interface
org.opengis.feature.Property

Packages that use Property
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.gen   
org.geotools.data.wfs.feature   
org.geotools.feature   
org.geotools.feature.simple   
org.geotools.feature.type   
org.geotools.gml3.bindings   
org.geotools.jdbc   
org.opengis.feature Representation a features on a map. 
org.opengis.feature.simple Profile of the general ISO 19107 feature model built around the idea of a simple feature composed of a list of values. 
org.opengis.feature.type Feature model ISO 19109 with allowances for usability. 
 

Uses of Property in org.geotools.data.complex
 

Methods in org.geotools.data.complex with parameters of type Property
protected  Map AbstractMappingFeatureIterator.getClientProperties(Property attribute)
           
 

Uses of Property in org.geotools.data.gen
 

Classes in org.geotools.data.gen that implement Property
 class PreGeneralizedSimpleFeature
           
 

Methods in org.geotools.data.gen that return Property
 Property PreGeneralizedSimpleFeature.getProperty(Name name)
           
 Property PreGeneralizedSimpleFeature.getProperty(String name)
           
 

Methods in org.geotools.data.gen that return types with arguments of type Property
 Collection<Property> PreGeneralizedSimpleFeature.getProperties()
           
 Collection<Property> PreGeneralizedSimpleFeature.getProperties(Name name)
           
 Collection<Property> PreGeneralizedSimpleFeature.getProperties(String name)
           
 Collection<? extends Property> PreGeneralizedSimpleFeature.getValue()
           
 

Method parameters in org.geotools.data.gen with type arguments of type Property
 void PreGeneralizedSimpleFeature.setValue(Collection<Property> arg0)
           
 

Uses of Property in org.geotools.data.wfs.feature
 

Classes in org.geotools.data.wfs.feature that implement Property
 class LenientAttribute
          Simple, mutable class to store attributes - that does not validate!
 class LenientFeature
          An implementation of SimpleFeature that has a more relaxed attitude about being valid.
 

Uses of Property in org.geotools.feature
 

Classes in org.geotools.feature that implement Property
 class AssociationImpl
           
 class AttributeImpl
          Simple, mutable class to store attributes.
 class ComplexAttributeImpl
           
 class DecoratingFeature
          Base class for feature decorators.
 class FeatureImpl
          Temptative implementation of Feature.
 class GeometryAttributeImpl
          TODO: rename to GeometricAttribute Provides ...TODO summary sentence TODO Description Example Use: GeometryAttributeType x = new GeometryAttributeType( ... ); TODO code example
 class PropertyImpl
          Implementation of Property.
 

Methods in org.geotools.feature that return Property
 Property ComplexAttributeImpl.getProperty(Name name)
           
 Property DecoratingFeature.getProperty(Name arg0)
           
 Property ComplexAttributeImpl.getProperty(String name)
           
 Property DecoratingFeature.getProperty(String arg0)
           
 

Methods in org.geotools.feature that return types with arguments of type Property
 Collection<Property> ComplexAttributeImpl.getProperties()
           
 Collection<Property> DecoratingFeature.getProperties()
           
 Collection<Property> ComplexAttributeImpl.getProperties(Name name)
           
 Collection<Property> DecoratingFeature.getProperties(Name arg0)
           
 Collection<Property> ComplexAttributeImpl.getProperties(String name)
           
 Collection<Property> DecoratingFeature.getProperties(String arg0)
           
 Collection<? extends Property> ComplexAttributeImpl.getValue()
           
 Collection<? extends Property> DecoratingFeature.getValue()
           
 

Methods in org.geotools.feature with parameters of type Property
 void ComplexFeatureBuilder.append(Name name, Property value)
          Append a property value to the complex feature under construction and associate it with the name specified.
 

Method parameters in org.geotools.feature with type arguments of type Property
 void ComplexAttributeImpl.setValue(Collection<Property> newValue)
           
 void DecoratingFeature.setValue(Collection<Property> arg0)
           
 

Constructor parameters in org.geotools.feature with type arguments of type Property
ComplexAttributeImpl(Collection<Property> properties, AttributeDescriptor descriptor, Identifier id)
           
ComplexAttributeImpl(Collection<Property> properties, ComplexType type, Identifier id)
           
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 Property in org.geotools.feature.simple
 

Classes in org.geotools.feature.simple that implement Property
 class SimpleFeatureImpl
          An implementation of SimpleFeature geared towards speed and backed by an Object[].
 

Methods in org.geotools.feature.simple that return Property
 Property SimpleFeatureImpl.getProperty(Name name)
           
 Property SimpleFeatureImpl.getProperty(String name)
           
 

Methods in org.geotools.feature.simple that return types with arguments of type Property
 Collection<Property> SimpleFeatureImpl.getProperties()
           
 Collection<Property> SimpleFeatureImpl.getProperties(Name name)
           
 Collection<Property> SimpleFeatureImpl.getProperties(String name)
           
 Collection<? extends Property> SimpleFeatureImpl.getValue()
           
 

Method parameters in org.geotools.feature.simple with type arguments of type Property
 void SimpleFeatureImpl.setValue(Collection<Property> values)
           
 

Uses of Property in org.geotools.feature.type
 

Classes in org.geotools.feature.type that implement Property
 class ReadonlyAttributeDecorator
          Readonly wrapper around the provided Attribute.
 

Methods in org.geotools.feature.type that return types with arguments of type Property
 Class<Collection<Property>> ComplexTypeImpl.getBinding()
           
 Class<Collection<Property>> AbstractLazyComplexTypeImpl.getBinding()
           
 

Uses of Property in org.geotools.gml3.bindings
 

Methods in org.geotools.gml3.bindings with parameters of type Property
static void GML3EncodingUtils.encodeClientProperties(Property complex, Element element)
          Encode any client properties (XML attributes) found in the UserData map of a ComplexAttribute as XML attributes of the element.
 

Uses of Property in org.geotools.jdbc
 

Classes in org.geotools.jdbc that implement Property
protected  class JDBCFeatureReader.ResultSetFeature
          Feature wrapper around a result set.
 

Methods in org.geotools.jdbc that return Property
 Property JDBCFeatureReader.ResultSetFeature.getProperty(Name name)
           
 Property JDBCFeatureReader.ResultSetFeature.getProperty(String name)
           
 

Methods in org.geotools.jdbc that return types with arguments of type Property
 Collection<Property> JDBCFeatureReader.ResultSetFeature.getProperties()
           
 Collection<Property> JDBCFeatureReader.ResultSetFeature.getProperties(Name name)
           
 Collection<Property> JDBCFeatureReader.ResultSetFeature.getProperties(String name)
           
 Collection<? extends Property> JDBCFeatureReader.ResultSetFeature.getValue()
           
 

Method parameters in org.geotools.jdbc with type arguments of type Property
 void JDBCFeatureReader.ResultSetFeature.setValue(Collection<Property> value)
           
 

Uses of Property in org.opengis.feature
 

Subinterfaces of Property in org.opengis.feature
 interface Association
          Extension of Property to represent an Association, or relationship, between two attributes.
 interface Attribute
          An extension of Property for an attribute, or data.
 interface ComplexAttribute
          An instance of ComplexType which is composed of other properties.
 interface Feature
          An instance of FeatureType representing a geographic feature composed of geometric and non-geometric properties.
 interface GeometryAttribute
          An attribute which has a geometric value.
 

Methods in org.opengis.feature that return Property
 Property ComplexAttribute.getProperty(Name name)
          Returns single property of the complex attribute which matches the specified name.
 Property ComplexAttribute.getProperty(String name)
          Returns single property of the complex attribute which matches the specified name.
 

Methods in org.opengis.feature that return types with arguments of type Property
 Collection<Property> ComplexAttribute.getProperties()
          Complete collection of properties.
 Collection<Property> ComplexAttribute.getProperties(Name name)
          Returns a subset of the properties of the complex attribute which match the specified name.
 Collection<Property> ComplexAttribute.getProperties(String name)
          Returns a subset of the properties of the complex attribute which match the specified name.
 Collection<? extends Property> ComplexAttribute.getValue()
          Override of getValue() which returns the collection of Property which make up the value of the complex attribute.
 

Method parameters in org.opengis.feature with type arguments of type Property
 ComplexAttribute FeatureFactory.createComplexAttribute(Collection<Property> value, AttributeDescriptor descriptor, String id)
          Creates a complex attribute.
 ComplexAttribute FeatureFactory.createComplexAttribute(Collection<Property> value, ComplexType type, String id)
          Creates a complex attribute.
 Feature FeatureFactory.createFeature(Collection<Property> value, AttributeDescriptor descriptor, String id)
          Creates a feature.
 Feature FeatureFactory.createFeature(Collection<Property> value, FeatureType type, String id)
          Creates a feature.
 void ComplexAttribute.setValue(Collection<Property> values)
          Sets the contained properties of the complex attribute.
 

Uses of Property in org.opengis.feature.simple
 

Subinterfaces of Property in org.opengis.feature.simple
 interface SimpleFeature
          An instance of SimpleFeatureType composed of fixed list values in a known order.
 

Uses of Property in org.opengis.feature.type
 

Methods in org.opengis.feature.type that return types with arguments of type Property
 Class<Collection<Property>> ComplexType.getBinding()
          Override and type narrow to Collection.class.
 



Copyright © 1996-2014 Geotools. All Rights Reserved.