Class MetadataStandard
org.geotools.api.metadata
package and
subpackages.
This class provides some methods operating on metadata instances through Java reflection. The following rules are assumed:
- Properties (or metadata attributes) are defined by the set of
get*()
(arbitrary return type) oris*()
(boolean return type) methods found in the interface. Getters declared in the implementation only are ignored. - A property is writable if a
set*(...)
method is defined in the implementation class for the correspondingget*()
method. The setter don't need to be defined in the interface.
- Since:
- 2.4
- Author:
- Martin Desruisseaux (Geomatys)
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final MetadataStandard
An instance working on ISO 19111 standard as defined by GeoAPI interfaces in theorg.geotools.api.referencing
package and subpackages.static final MetadataStandard
An instance working on ISO 19115 standard as defined by GeoAPI interfaces in theorg.geotools.api.metadata
package and subpackages.static final MetadataStandard
An instance working on ISO 19119 standard as defined by GeoAPI interfaces in theorg.geotools.api.service
package and subpackages. -
Constructor Summary
ConstructorsConstructorDescriptionMetadataStandard
(String interfacePackage) Creates a new instance working on implementation of interfaces defined in the specified package. -
Method Summary
Modifier and TypeMethodDescriptionReturns a view of the specified metadata object as a map.Returns a view of the specified metadata as a tree.Class<?>
getInterface
(Class<?> implementation) Returns the metadata interface implemented by the specified implementation class.int
Computes a hash code for the specified metadata.void
shallowCopy
(Object source, Object target, boolean skipNulls) Copies all metadata from source to target.boolean
shallowEquals
(Object metadata1, Object metadata2, boolean skipNulls) Compares the two specified metadata objects.Returns a string representation of the specified metadata.
-
Field Details
-
ISO_19111
An instance working on ISO 19111 standard as defined by GeoAPI interfaces in theorg.geotools.api.referencing
package and subpackages.- Since:
- 2.5
-
ISO_19115
An instance working on ISO 19115 standard as defined by GeoAPI interfaces in theorg.geotools.api.metadata
package and subpackages. -
ISO_19119
An instance working on ISO 19119 standard as defined by GeoAPI interfaces in theorg.geotools.api.service
package and subpackages.- Since:
- 2.5
-
-
Constructor Details
-
MetadataStandard
Creates a new instance working on implementation of interfaces defined in the specified package. For the ISO 19115 standard reflected by GeoAPI interfaces, it should be theorg.geotools.api.metadata
package.- Parameters:
interfacePackage
- The root package for metadata interfaces.
-
-
Method Details
-
getInterface
Returns the metadata interface implemented by the specified implementation class.- Parameters:
implementation
- The implementation class.- Returns:
- The interface implemented by the given implementation class.
- Throws:
ClassCastException
- if the specified implementation class do not implements a metadata interface of the expected package.- See Also:
-
AbstractMap#getInterface
-
asMap
Returns a view of the specified metadata object as a map. The map is backed by the metadata object using Java reflection, so changes in the underlying metadata object are immediately reflected in the map. The keys are the property names as determined by the list ofget*()
methods declared in the metadata interface.The map supports the
put
operations if the underlying metadata object contains {@link #set*(...)} methods.- Parameters:
metadata
- The metadata object to view as a map.- Returns:
- A map view over the metadata object.
- Throws:
ClassCastException
- if at the metadata object don't implements a metadata interface of the expected package.- See Also:
-
AbstractMap#asMap
-
asTree
Returns a view of the specified metadata as a tree. Note that whileTreeModel
is defined in thejavax.swing.tree
package, it can be seen as a data structure independent of Swing. It will not force class loading of Swing framework.In current implementation, the tree is not live (i.e. changes in metadata are not reflected in the tree). However it may be improved in a future Geotools implementation.
- Parameters:
metadata
- The metadata object to formats as a string.- Returns:
- A tree representation of the specified metadata.
- Throws:
ClassCastException
- if at the metadata object don't implements a metadata interface of the expected package.- See Also:
-
AbstractMap#asTree
-
shallowCopy
public void shallowCopy(Object source, Object target, boolean skipNulls) throws ClassCastException, UnmodifiableMetadataException Copies all metadata from source to target. The source must implements the same metadata interface than the target.- Parameters:
source
- The metadata to copy.target
- The target metadata.skipNulls
- Iftrue
, only non-null values will be copied.- Throws:
ClassCastException
- if the source or target object don't implements a metadata interface of the expected package.UnmodifiableMetadataException
- if the target metadata is unmodifiable, or if at least one setter method was required but not found.- See Also:
-
AbstractMap#AbstractMap(Object)
-
shallowEquals
public boolean shallowEquals(Object metadata1, Object metadata2, boolean skipNulls) throws ClassCastException Compares the two specified metadata objects. The comparaison is shallow, i.e. all metadata attributes are compared using theObject.equals(java.lang.Object)
method without recursive call to thisshallowEquals(...)
method for child metadata.This method can optionaly excludes null values from the comparaison. In metadata, null value often means "don't know", so in some occasion we want to consider two metadata as different only if an attribute value is know for sure to be different.
The first arguments must be an implementation of a metadata interface, otherwise an exception will be thrown. The two argument do not need to be the same implementation however.
- Parameters:
metadata1
- The first metadata object to compare.metadata2
- The second metadata object to compare.skipNulls
- Iftrue
, only non-null values will be compared.- Returns:
true
if the given metadata objects are equals.- Throws:
ClassCastException
- if at least one metadata object don't implements a metadata interface of the expected package.- See Also:
-
hashCode
Computes a hash code for the specified metadata. The hash code is defined as the sum of hash code values of all non-null properties. This is the same contract thanSet.hashCode()
and ensure that the hash code value is insensitive to the ordering of properties.- Parameters:
metadata
- The metadata object to compute hash code.- Returns:
- A hash code value for the specified metadata.
- Throws:
ClassCastException
- if at the metadata object don't implements a metadata interface of the expected package.- See Also:
-
AbstractMap#hashCode
-
toString
Returns a string representation of the specified metadata.- Parameters:
metadata
- The metadata object to formats as a string.- Returns:
- A string representation of the specified metadata.
- Throws:
ClassCastException
- if at the metadata object don't implements a metadata interface of the expected package.- See Also:
-
AbstractMap#toString
-