Interface Feature

    • Method Detail

      • getIdentifier

        FeatureId getIdentifier()
        A unique identifier for the feature.

        getType().isIdentifiable() must return true so this value must not return null.

        Generation of the identifier is dependent on the underlying data storage medium. Often this identifier is not persistent. Mediums such shapefiles and database tables have "keys" built in which map naturally to persistent feature identifiers. But other mediums do not have such keys and may have to generate feature identifiers "on-the-fly". This means that client code being able to depend on this value as a persistent entity is dependent on which storage medium or data source is being used.

        Specified by:
        getIdentifier in interface Attribute
        Returns:
        The feature identifier, never null.
      • getBounds

        BoundingBox getBounds()
        The bounds of this Feature, if available.

        This value is derived from any geometric attributes that the feature is composed of.

        In the case that the feature has no geometric attributes this method should return an empty bounds, ie, bounds.isEmpty() == true. This method should never return null.

        The coordinate reference system of the returned bounds is derived from the geometric attributes which were used to compute the bounds. In the event that the feature contains multiple geometric attributes which have different crs's, the one defined by #getGeometryDescriptor() should take precedence and the others should be reprojected accordingly.

        Returns:
        the feature bounds, possibly empty.
      • getDefaultGeometryProperty

        GeometryAttribute getDefaultGeometryProperty()
        The default geometric attribute of the feature.

        This method returns null in the case where no such attribute exists.

        Returns:
        The default geometry attribute, or null.
      • setDefaultGeometryProperty

        void setDefaultGeometryProperty​(GeometryAttribute geometryAttribute)
        Sets the default geometric attribute of the feature.

        This value must be an attribute which is already defined for the feature. In other words, this method can not be used to add a new attribute to the feature.

        Parameters:
        geometryAttribute - The new geomtric attribute.
        Throws:
        IllegalArgumentException - If the specified attribute is not already an attribute of the feature.