Uses of Interface
org.geotools.api.feature.Property
-
Packages that use Property Package Description org.geotools.api.feature Representation a features on a map.org.geotools.api.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.geotools.api.feature.type Feature model ISO 19109 with allowances for usability.org.geotools.data.complex This package contains the implementation of a ComplexDataStore,org.geotools.data.complex.feature.type org.geotools.data.gen org.geotools.data.mongodb org.geotools.data.vpf org.geotools.feature org.geotools.feature.simple org.geotools.feature.type org.geotools.gml3.bindings org.geotools.jdbc -
-
Uses of Property in org.geotools.api.feature
Subinterfaces of Property in org.geotools.api.feature Modifier and Type Interface Description 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 ofComplexType
which is composed of other properties.interface
Feature
An instance ofFeatureType
representing a geographic feature composed of geometric and non-geometric properties.interface
GeometryAttribute
An attribute which has a geometric value.Methods in org.geotools.api.feature that return Property Modifier and Type Method Description Property
ComplexAttribute. getProperty(String name)
Returns single property of the complex attribute which matches the specified name.Property
ComplexAttribute. getProperty(Name name)
Returns single property of the complex attribute which matches the specified name.Methods in org.geotools.api.feature that return types with arguments of type Property Modifier and Type Method Description Collection<Property>
ComplexAttribute. getProperties()
Complete collection of properties.Collection<Property>
ComplexAttribute. getProperties(String name)
Returns a subset of the properties of the complex attribute which match the specified name.Collection<Property>
ComplexAttribute. getProperties(Name name)
Returns a subset of the properties of the complex attribute which match the specified name.Collection<? extends Property>
ComplexAttribute. getValue()
Override ofgetValue()
which returns the collection ofProperty
which make up the value of the complex attribute.Method parameters in org.geotools.api.feature with type arguments of type Property Modifier and Type Method Description 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.geotools.api.feature.simple
Subinterfaces of Property in org.geotools.api.feature.simple Modifier and Type Interface Description interface
SimpleFeature
An instance ofSimpleFeatureType
composed of fixed list values in a known order. -
Uses of Property in org.geotools.api.feature.type
Methods in org.geotools.api.feature.type that return types with arguments of type Property Modifier and Type Method Description Class<Collection<Property>>
ComplexType. getBinding()
Override and type narrow to Collection.class. -
Uses of Property in org.geotools.data.complex
Methods in org.geotools.data.complex with parameters of type Property Modifier and Type Method Description protected Map<Name,Expression>
AbstractMappingFeatureIterator. getClientProperties(Property attribute)
-
Uses of Property in org.geotools.data.complex.feature.type
Methods in org.geotools.data.complex.feature.type that return types with arguments of type Property Modifier and Type Method Description Class<Collection<Property>>
ComplexTypeProxy. getBinding()
-
Uses of Property in org.geotools.data.gen
Classes in org.geotools.data.gen that implement Property Modifier and Type Class Description class
PreGeneralizedSimpleFeature
Methods in org.geotools.data.gen that return Property Modifier and Type Method Description Property
PreGeneralizedSimpleFeature. getProperty(String name)
Property
PreGeneralizedSimpleFeature. getProperty(Name name)
Methods in org.geotools.data.gen that return types with arguments of type Property Modifier and Type Method Description Collection<Property>
PreGeneralizedSimpleFeature. getProperties()
Collection<Property>
PreGeneralizedSimpleFeature. getProperties(String name)
Collection<Property>
PreGeneralizedSimpleFeature. getProperties(Name name)
Collection<? extends Property>
PreGeneralizedSimpleFeature. getValue()
Method parameters in org.geotools.data.gen with type arguments of type Property Modifier and Type Method Description void
PreGeneralizedSimpleFeature. setValue(Collection<Property> arg0)
-
Uses of Property in org.geotools.data.mongodb
Classes in org.geotools.data.mongodb that implement Property Modifier and Type Class Description class
MongoDBObjectFeature
class
MongoFeature
Methods in org.geotools.data.mongodb that return Property Modifier and Type Method Description Property
MongoDBObjectFeature. getProperty(String name)
Property
MongoDBObjectFeature. getProperty(Name name)
Methods in org.geotools.data.mongodb that return types with arguments of type Property Modifier and Type Method Description Collection<Property>
MongoDBObjectFeature. getProperties()
Collection<Property>
MongoDBObjectFeature. getProperties(String name)
Collection<Property>
MongoDBObjectFeature. getProperties(Name name)
Collection<? extends Property>
MongoDBObjectFeature. getValue()
Method parameters in org.geotools.data.mongodb with type arguments of type Property Modifier and Type Method Description void
MongoDBObjectFeature. setValue(Collection<Property> value)
-
Uses of Property in org.geotools.data.vpf
Methods in org.geotools.data.vpf that return types with arguments of type Property Modifier and Type Method Description Class<Collection<Property>>
VPFFeatureClass. getBinding()
Class<Collection<Property>>
VPFFeatureType. getBinding()
-
Uses of Property in org.geotools.feature
Classes in org.geotools.feature that implement Property Modifier and Type Class Description 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 sentenceclass
PropertyImpl
Implementation of Property.Methods in org.geotools.feature that return Property Modifier and Type Method Description Property
ComplexAttributeImpl. getProperty(String name)
Property
ComplexAttributeImpl. getProperty(Name name)
Property
DecoratingFeature. getProperty(String arg0)
Property
DecoratingFeature. getProperty(Name arg0)
Methods in org.geotools.feature that return types with arguments of type Property Modifier and Type Method Description Optional<Property>
ComplexAttributeImpl. find(Predicate<? super Property> predicate)
Stream<Property>
ComplexAttributeImpl. findAll(Predicate<? super Property> predicate)
Optional<Property>
ComplexAttributeImpl. findLast(Name name)
protected List<Property>
AttributeBuilder. getProperties()
Convenience accessor for properties list which does the null check.Collection<Property>
ComplexAttributeImpl. getProperties()
Collection<Property>
ComplexAttributeImpl. getProperties(String name)
Collection<Property>
ComplexAttributeImpl. getProperties(Name name)
Collection<Property>
DecoratingFeature. getProperties()
Collection<Property>
DecoratingFeature. getProperties(String arg0)
Collection<Property>
DecoratingFeature. getProperties(Name arg0)
Collection<? extends Property>
ComplexAttributeImpl. getValue()
Collection<? extends Property>
DecoratingFeature. getValue()
protected List<Property>
AttributeBuilder. properties()
Convenience accessor for properties list which does the null check.protected List<Property>
ComplexAttributeImpl. properties()
Internal helper method for getting at the properties without wrapping in unmodifiable collection.Methods in org.geotools.feature with parameters of type Property Modifier and Type Method Description void
ComplexAttributeImpl. addValue(Property value)
Appends a property to this attribute's property list without incurring in unnecessary object allocation such as safe-copying the values list as inComplexAttributeImpl.setValue(Collection)
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 Modifier and Type Method Description ComplexAttribute
AbstractFeatureFactoryImpl. createComplexAttribute(Collection<Property> value, AttributeDescriptor descriptor, String id)
ComplexAttribute
AbstractFeatureFactoryImpl. createComplexAttribute(Collection<Property> value, ComplexType type, String id)
Feature
AbstractFeatureFactoryImpl. createFeature(Collection<Property> value, AttributeDescriptor descriptor, String id)
Feature
AbstractFeatureFactoryImpl. createFeature(Collection<Property> value, FeatureType type, String id)
Optional<Property>
ComplexAttributeImpl. find(Predicate<? super Property> predicate)
Stream<Property>
ComplexAttributeImpl. findAll(Predicate<? super Property> predicate)
void
ComplexAttributeImpl. setValue(Collection<Property> newValue)
void
DecoratingFeature. setValue(Collection<Property> arg0)
Constructor parameters in org.geotools.feature with type arguments of type Property Constructor Description 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 Modifier and Type Class Description class
SimpleFeatureImpl
An implementation ofSimpleFeature
geared towards speed and backed by an Object[].Methods in org.geotools.feature.simple that return Property Modifier and Type Method Description Property
SimpleFeatureImpl. getProperty(String name)
Property
SimpleFeatureImpl. getProperty(Name name)
Methods in org.geotools.feature.simple that return types with arguments of type Property Modifier and Type Method Description Collection<Property>
SimpleFeatureImpl. getProperties()
Collection<Property>
SimpleFeatureImpl. getProperties(String name)
Collection<Property>
SimpleFeatureImpl. getProperties(Name name)
Collection<? extends Property>
SimpleFeatureImpl. getValue()
Method parameters in org.geotools.feature.simple with type arguments of type Property Modifier and Type Method Description void
SimpleFeatureImpl. setValue(Collection<Property> values)
-
Uses of Property in org.geotools.feature.type
Classes in org.geotools.feature.type that implement Property Modifier and Type Class Description class
ReadonlyAttributeDecorator
Readonly wrapper around the provided Attribute.Methods in org.geotools.feature.type that return types with arguments of type Property Modifier and Type Method Description Class<Collection<Property>>
AbstractLazyComplexTypeImpl. getBinding()
Class<Collection<Property>>
ComplexTypeImpl. getBinding()
-
Uses of Property in org.geotools.gml3.bindings
Methods in org.geotools.gml3.bindings with parameters of type Property Modifier and Type Method Description 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 Modifier and Type Class Description protected class
JDBCFeatureReader.ResultSetFeature
Feature wrapper around a result set.Methods in org.geotools.jdbc that return Property Modifier and Type Method Description Property
JDBCFeatureReader.ResultSetFeature. getProperty(String name)
Property
JDBCFeatureReader.ResultSetFeature. getProperty(Name name)
Methods in org.geotools.jdbc that return types with arguments of type Property Modifier and Type Method Description Collection<Property>
JDBCFeatureReader.ResultSetFeature. getProperties()
Collection<Property>
JDBCFeatureReader.ResultSetFeature. getProperties(String name)
Collection<Property>
JDBCFeatureReader.ResultSetFeature. getProperties(Name name)
Collection<? extends Property>
JDBCFeatureReader.ResultSetFeature. getValue()
Method parameters in org.geotools.jdbc with type arguments of type Property Modifier and Type Method Description void
JDBCFeatureReader.ResultSetFeature. setValue(Collection<Property> value)
-