Package com.vividsolutions.jump.feature
Class FlexibleFeature
- java.lang.Object
-
- com.vividsolutions.jump.feature.AbstractBasicFeature
-
- com.vividsolutions.jump.feature.BasicFeature
-
- com.vividsolutions.jump.feature.FlexibleFeature
-
- All Implemented Interfaces:
Feature
,Serializable
,Cloneable
,Comparable
public class FlexibleFeature extends BasicFeature
a FlexibleFeature based onBasicFeature
originally used by the GeoJSON reader. currently adding this functionality - "autoextends" by returning null for undefined attribs - lazy conversion of attributes (seegetAttribute(int)
) currently String, Date, Time, Timestamp- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description FlexibleFeature(FeatureSchema featureSchema)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Object
getAttribute(int i)
Returns the specified attribute.Object[]
getAttributes()
Returns all attributes in an array of Objects.org.locationtech.jts.geom.Geometry
getGeometry()
getting the geometry by explicitly using the flexible getAttribute() method abovevoid
setAttribute(int attributeIndex, Object newAttribute)
setting an attribute, fixing the underlying array in case the schema changed inbetweenvoid
setGeometry(org.locationtech.jts.geom.Geometry geometry)
setting the geometry by explicitly using the flexible setAttribute() method above-
Methods inherited from class com.vividsolutions.jump.feature.BasicFeature
isModified, setAttributes, setModified
-
Methods inherited from class com.vividsolutions.jump.feature.AbstractBasicFeature
clone, clone, clone, clone, compare, compareTo, getAttribute, getDouble, getID, getInteger, getSchema, getString, getString, getUserData, removeAllUserData, removeUserData, setAttribute, setSchema, setUserData
-
-
-
-
Constructor Detail
-
FlexibleFeature
public FlexibleFeature(FeatureSchema featureSchema)
-
-
Method Detail
-
getAttribute
public Object getAttribute(int i)
Description copied from class:BasicFeature
Returns the specified attribute.- Specified by:
getAttribute
in interfaceFeature
- Overrides:
getAttribute
in classBasicFeature
- Parameters:
i
- the index of the attribute to get- Returns:
- the attribute
-
getAttributes
public Object[] getAttributes()
Returns all attributes in an array of Objects. Use getAttribute(i) to convert raw gml strings into typed attributes.- Specified by:
getAttributes
in interfaceFeature
- Overrides:
getAttributes
in classBasicFeature
-
setAttribute
public void setAttribute(int attributeIndex, Object newAttribute)
setting an attribute, fixing the underlying array in case the schema changed inbetween- Specified by:
setAttribute
in interfaceFeature
- Overrides:
setAttribute
in classBasicFeature
- Parameters:
attributeIndex
- the array index at which to put the new attributenewAttribute
- the new attribute
-
setGeometry
public void setGeometry(org.locationtech.jts.geom.Geometry geometry)
setting the geometry by explicitly using the flexible setAttribute() method above- Specified by:
setGeometry
in interfaceFeature
- Overrides:
setGeometry
in classAbstractBasicFeature
- Parameters:
geometry
- the new spatial attribute
-
getGeometry
public org.locationtech.jts.geom.Geometry getGeometry()
getting the geometry by explicitly using the flexible getAttribute() method above- Specified by:
getGeometry
in interfaceFeature
- Overrides:
getGeometry
in classAbstractBasicFeature
- Returns:
- the feature's spatial attribute
-
-