Class FlexibleFeature

    • Constructor Detail

      • FlexibleFeature

        public FlexibleFeature​(FeatureSchema featureSchema)
    • Method Detail

      • 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 interface Feature
        Overrides:
        getAttributes in class BasicFeature
      • 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 interface Feature
        Overrides:
        setAttribute in class BasicFeature
        Parameters:
        attributeIndex - the array index at which to put the new attribute
        newAttribute - 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 interface Feature
        Overrides:
        setGeometry in class AbstractBasicFeature
        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 interface Feature
        Overrides:
        getGeometry in class AbstractBasicFeature
        Returns:
        the feature's spatial attribute