Uses of Interface
org.opengis.feature.type.PropertyDescriptor

Packages that use PropertyDescriptor
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.complex.config   
org.geotools.feature   
org.geotools.feature.type   
org.geotools.feature.xpath   
org.geotools.gml.producer   
org.geotools.xml.gml   
org.opengis.feature Representation a features on a map. 
org.opengis.feature.type Feature model ISO 19109 with allowances for usability. 
 

Uses of PropertyDescriptor in org.geotools.data.complex
 

Fields in org.geotools.data.complex declared as PropertyDescriptor
static PropertyDescriptor ComplexFeatureConstants.FEATURE_CHAINING_LINK
          Static attribute descriptor used to link different feature types.
 

Uses of PropertyDescriptor in org.geotools.data.complex.config
 

Methods in org.geotools.data.complex.config that return PropertyDescriptor
 PropertyDescriptor NonFeatureTypeProxy.getDescriptor(Name name)
           
 

Methods in org.geotools.data.complex.config that return types with arguments of type PropertyDescriptor
 Collection<PropertyDescriptor> NonFeatureTypeProxy.getDescriptors()
           
 Collection<PropertyDescriptor> NonFeatureTypeProxy.getTypeDescriptors()
          Return only the schema descriptors
 

Constructor parameters in org.geotools.data.complex.config with type arguments of type PropertyDescriptor
NonFeatureTypeProxy(AttributeType type, FeatureTypeMapping mapping, Collection<PropertyDescriptor> schema)
           
 

Uses of PropertyDescriptor in org.geotools.feature
 

Fields in org.geotools.feature declared as PropertyDescriptor
protected  PropertyDescriptor PropertyImpl.descriptor
          descriptor of the property
 

Methods in org.geotools.feature that return PropertyDescriptor
 PropertyDescriptor PropertyImpl.getDescriptor()
           
 

Methods in org.geotools.feature that return types with arguments of type PropertyDescriptor
 Collection<PropertyDescriptor> TypeBuilder.getProperties()
          Access to properties used by builder.
protected  Collection<PropertyDescriptor> TypeBuilder.newCollection()
          Template method to enable subclasses to customize the collection implementation used by "default".
protected  Collection<PropertyDescriptor> TypeBuilder.properties()
          Grab property collection as an argument to factory method.
 

Methods in org.geotools.feature with parameters of type PropertyDescriptor
 TypeBuilder TypeBuilder.add(PropertyDescriptor descriptor)
          Add provided descriptor to the type to be created.
static boolean TypeBuilder.contains(Collection collection, PropertyDescriptor descriptor)
           
protected  Object FeatureBuilder.convert(Object value, PropertyDescriptor descriptor)
           
static int FeatureTypes.getFieldLength(PropertyDescriptor descriptor)
          This is a 'suitable replacement for extracting the expected field length of an attribute absed on its "facets" (ie Filter describing type restrictions); This code is copied from the ShapefileDataStore where it was written (probably by dzwiers).
 void FeatureCollectionIteration.Handler.handleAttribute(PropertyDescriptor type, Object value)
          The handler is visiting an Attribute of a Feature.
 void TypeBuilder.init(PropertyDescriptor descriptor)
           
 

Method parameters in org.geotools.feature with type arguments of type PropertyDescriptor
 void TypeBuilder.setProperties(Collection<PropertyDescriptor> properties)
          Allow for user supplied collection implementaion used for properties.
 

Constructors in org.geotools.feature with parameters of type PropertyDescriptor
PropertyImpl(Object value, PropertyDescriptor descriptor)
           
 

Uses of PropertyDescriptor in org.geotools.feature.type
 

Classes in org.geotools.feature.type that implement PropertyDescriptor
 class AssociationDescriptorImpl
           
 class AttributeDescriptorImpl
           
 class GeometryDescriptorImpl
           
 class PropertyDescriptorImpl
           
 

Methods in org.geotools.feature.type that return PropertyDescriptor
static PropertyDescriptor Types.descriptor(ComplexType type, Name name)
          Returns the first descriptor matching the given name within the given type.
static PropertyDescriptor Types.descriptor(ComplexType type, String name)
          Returns the first descriptor matching the given local name within the given type.
static PropertyDescriptor Types.descriptor(ComplexType type, String name, String namespace)
          Returns the first descriptor matching the given name + namespace within the given type.
static PropertyDescriptor Types.findDescriptor(ComplexType parentType, Name name)
          Find a descriptor, taking in to account supertypes AND substitution groups
static PropertyDescriptor Types.findDescriptor(ComplexType parentType, String name)
          Find a descriptor, taking in to account supertypes AND substitution groups
 PropertyDescriptor ComplexTypeImpl.getDescriptor(Name name)
           
 PropertyDescriptor AbstractLazyComplexTypeImpl.getDescriptor(Name name)
           
 PropertyDescriptor ComplexTypeImpl.getDescriptor(String name)
           
 PropertyDescriptor AbstractLazyComplexTypeImpl.getDescriptor(String name)
          Deprecated. Any code that uses this method instead of AbstractLazyComplexTypeImpl.getDescriptor(Name) is inherently unsafe.
 

Methods in org.geotools.feature.type that return types with arguments of type PropertyDescriptor
abstract  Collection<PropertyDescriptor> AbstractLazyComplexTypeImpl.buildDescriptors()
          Subclasses must override this method to return the list of descriptors that define the properties of this type.
static List<PropertyDescriptor> Types.descriptors(ComplexType type)
          Returns the set of all descriptors of a complex type, including from supertypes.
 Collection<PropertyDescriptor> ComplexTypeImpl.getDescriptors()
           
 Collection<PropertyDescriptor> AbstractLazyComplexTypeImpl.getDescriptors()
           
 Collection<PropertyDescriptor> ComplexFeatureTypeImpl.getTypeDescriptors()
          Return all the descriptors that come from the schema, excluding the system descriptors, such as 'FEATURE_LINK', used for linking features.
 

Constructor parameters in org.geotools.feature.type with type arguments of type PropertyDescriptor
ComplexFeatureTypeImpl(ComplexFeatureTypeImpl type, Collection<PropertyDescriptor> schema)
          Create a clone of an existing ComplexFeatureTypeImpl with new schema.
ComplexFeatureTypeImpl(Name name, Collection<PropertyDescriptor> schema, GeometryDescriptor defaultGeometry, boolean isAbstract, List<Filter> restrictions, AttributeType superType, InternationalString description)
          Constructor for complex feature type with fake feature type descriptor provided.
ComplexTypeImpl(Name name, Collection<PropertyDescriptor> properties, boolean identified, boolean isAbstract, List<Filter> restrictions, AttributeType superType, InternationalString description)
           
FeatureTypeImpl(Name name, Collection<PropertyDescriptor> schema, GeometryDescriptor defaultGeometry, boolean isAbstract, List<Filter> restrictions, AttributeType superType, InternationalString description)
           
UniqueNameFeatureTypeImpl(Name name, Collection<PropertyDescriptor> schema, GeometryDescriptor defaultGeometry, boolean isAbstract, List<Filter> restrictions, AttributeType superType, InternationalString description)
           
 

Uses of PropertyDescriptor in org.geotools.feature.xpath
 

Fields in org.geotools.feature.xpath declared as PropertyDescriptor
protected  PropertyDescriptor FeatureTypeAttributePointer.descriptor
          descriptor
 

Fields in org.geotools.feature.xpath with type parameters of type PropertyDescriptor
protected  List<PropertyDescriptor> FeatureTypeAttributeIterator.children
           
 

Methods in org.geotools.feature.xpath that return PropertyDescriptor
 PropertyDescriptor FeatureTypeAttributePointer.getDescriptor()
           
 

Constructors in org.geotools.feature.xpath with parameters of type PropertyDescriptor
DescriptorXmlAttributeNodePointer(NodePointer parent, PropertyDescriptor descriptor, Name name)
           
 

Uses of PropertyDescriptor in org.geotools.gml.producer
 

Methods in org.geotools.gml.producer with parameters of type PropertyDescriptor
 void FeatureTransformer.FeatureTranslator.handleAttribute(PropertyDescriptor descriptor, Object value)
          handles sax for an attribute.
 

Uses of PropertyDescriptor in org.geotools.xml.gml
 

Subinterfaces of PropertyDescriptor in org.geotools.xml.gml
(package private)  interface ChoiceAttributeType
          A temporary measure representing a choice between several bindings.
 interface ChoiceGeometryType
           
 

Classes in org.geotools.xml.gml that implement PropertyDescriptor
 class ChoiceGeometryTypeImpl
          Created for GML generated FeatureTypes.
 

Uses of PropertyDescriptor in org.opengis.feature
 

Methods in org.opengis.feature that return PropertyDescriptor
 PropertyDescriptor Property.getDescriptor()
          The PropertyDscriptor of the property, null if this is a top-level value.
 

Uses of PropertyDescriptor in org.opengis.feature.type
 

Subinterfaces of PropertyDescriptor in org.opengis.feature.type
 interface AssociationDescriptor
          Describes an instance of an Association.
 interface AttributeDescriptor
          Describes an instance of an Attribute.
 interface GeometryDescriptor
          Describes an instance of a geometry attribute.
 interface Operation
          An implementation of an operation that may be invoked on an Attribute.
 

Methods in org.opengis.feature.type that return PropertyDescriptor
 PropertyDescriptor ComplexType.getDescriptor(Name name)
          Describe a single property by name.
 PropertyDescriptor ComplexType.getDescriptor(String name)
          Describe a single property by unqualified name.
 

Methods in org.opengis.feature.type that return types with arguments of type PropertyDescriptor
 Collection<PropertyDescriptor> ComplexType.getDescriptors()
          The property descriptor which compose the complex type.
 

Method parameters in org.opengis.feature.type with type arguments of type PropertyDescriptor
 ComplexType FeatureTypeFactory.createComplexType(Name name, Collection<PropertyDescriptor> schema, boolean isIdentifiable, boolean isAbstract, List<Filter> restrictions, AttributeType superType, InternationalString description)
          Creates a complex type.
 FeatureType FeatureTypeFactory.createFeatureType(Name name, Collection<PropertyDescriptor> schema, GeometryDescriptor defaultGeometry, boolean isAbstract, List<Filter> restrictions, AttributeType superType, InternationalString description)
          Creates a feature type.
 



Copyright © 1996-2014 Geotools. All Rights Reserved.