Class DefaultFeatureTypeInfo

All Implemented Interfaces:
Serializable, Emptiable, Lenient­Comparable, Identified­Object

@TitleProperty(name="featureTypeName") @UML(identifier="MD_FeatureTypeInfo", specification=ISO_19115) public class DefaultFeatureTypeInfo extends ISOMetadata
Information about the occurring feature type.
Note on International Standard versions
This class is derived from a new type defined in the ISO 19115 international standard published in 2014, while GeoAPI 3.0 is based on the version published in 2003. Consequently this implementation class does not yet implement a GeoAPI interface, but is expected to do so after the next GeoAPI releases. When the interface will become available, all references to this implementation class in Apache SIS will be replaced be references to the Feature­Type­Info interface.

Limitations

  • Instances of this class are not synchronized for multi-threading. Synchronization, if needed, is caller's responsibility.
  • Serialized objects of this class are not guaranteed to be compatible with future Apache SIS releases. Serialization support is appropriate for short term storage or RMI between applications running the same version of Apache SIS. For long term storage, use XML instead.
Since:
0.5
See Also:
  • Constructor Details

    • DefaultFeatureTypeInfo

      public DefaultFeatureTypeInfo()
      Constructs an initially empty feature type info.
    • DefaultFeatureTypeInfo

      public DefaultFeatureTypeInfo(GenericName featureTypeName)
      Constructs a feature type info initialized to the specified name.
      Parameters:
      feature­Type­Name - name of the feature type.
    • DefaultFeatureTypeInfo

      public DefaultFeatureTypeInfo(DefaultFeatureTypeInfo object)
      Constructs a new instance initialized with the values from the specified metadata object. This is a shallow copy constructor, because the other metadata contained in the given object are not recursively copied.

      Note on properties validation

      This constructor does not verify the property values of the given metadata (e.g. whether it contains unexpected negative values). This is because invalid metadata exist in practice, and verifying their validity in this copy constructor is often too late. Note that this is not the only hole, as invalid metadata instances can also be obtained by unmarshalling an invalid XML document.
      Parameters:
      object - the metadata to copy values from, or null if none.
  • Method Details