public final class MetadataStandard extends Object
org.opengis.metadata
package and subpackages.
This class provides some methods operating on metadata instances through Java reflection. The following rules are assumed:
get*()
(arbitrary
return type) or is*()
(boolean return type) methods found in the
interface. Getters declared in the implementation only are ignored.
set*(...)
method is defined in the
implementation class for the corresponding get*()
method. The setter don't need to
be defined in the interface.
Modifier and Type | Field and Description |
---|---|
static MetadataStandard |
ISO_19111
An instance working on ISO 19111 standard as defined by GeoAPI interfaces in the
org.opengis.referencing package and subpackages. |
static MetadataStandard |
ISO_19115
An instance working on ISO 19115 standard as defined by GeoAPI interfaces in the
org.opengis.metadata package and subpackages. |
static MetadataStandard |
ISO_19119
An instance working on ISO 19119 standard as defined by GeoAPI interfaces in the
org.opengis.service
package and subpackages. |
Constructor and Description |
---|
MetadataStandard(String interfacePackage)
Creates a new instance working on implementation of interfaces defined in the specified
package.
|
Modifier and Type | Method and Description |
---|---|
Map<String,Object> |
asMap(Object metadata)
Returns a view of the specified metadata object as a map.
|
TreeModel |
asTree(Object metadata)
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 |
hashCode(Object metadata)
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.
|
String |
toString(Object metadata)
Returns a string representation of the specified metadata.
|
public static final MetadataStandard ISO_19111
org.opengis.referencing
package and subpackages.public static final MetadataStandard ISO_19115
org.opengis.metadata
package and subpackages.public static final MetadataStandard ISO_19119
org.opengis.service
package and subpackages.public MetadataStandard(String interfacePackage)
org.opengis.metadata
package.interfacePackage
- The root package for metadata interfaces.public Class<?> getInterface(Class<?> implementation) throws ClassCastException
implementation
- The implementation class.ClassCastException
- if the specified implementation class do not implements a metadata
interface of the expected package.AbstractMap#getInterface
public Map<String,Object> asMap(Object metadata) throws ClassCastException
get*()
methods declared in the metadata interface.
The map supports the put
operations if the underlying metadata object
contains #set*(...)
methods.
metadata
- The metadata object to view as a map.ClassCastException
- if at the metadata object don't implements a metadata interface of
the expected package.AbstractMap#asMap
public TreeModel asTree(Object metadata) throws ClassCastException
TreeModel
is
defined in the javax.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.
metadata
- The metadata object to formats as a string.ClassCastException
- if at the metadata object don't implements a metadata interface of
the expected package.AbstractMap#asTree
public void shallowCopy(Object source, Object target, boolean skipNulls) throws ClassCastException, UnmodifiableMetadataException
source
- The metadata to copy.target
- The target metadata.skipNulls
- If true
, only non-null values will be copied.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.AbstractMap#AbstractMap(Object)
public boolean shallowEquals(Object metadata1, Object metadata2, boolean skipNulls) throws ClassCastException
Object.equals(java.lang.Object)
method without recursive
call to this shallowEquals(...)
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.
metadata1
- The first metadata object to compare.metadata2
- The second metadata object to compare.skipNulls
- If true
, only non-null values will be compared.true
if the given metadata objects are equals.ClassCastException
- if at least one metadata object don't implements a metadata
interface of the expected package.AbstractMetadata.equals(java.lang.Object)
public int hashCode(Object metadata) throws ClassCastException
Set.hashCode()
and ensure that the hash code value is insensitive to the ordering of
properties.metadata
- The metadata object to compute hash code.ClassCastException
- if at the metadata object don't implements a metadata interface of
the expected package.AbstractMap#hashCode
public String toString(Object metadata) throws ClassCastException
metadata
- The metadata object to formats as a string.ClassCastException
- if at the metadata object don't implements a metadata interface of
the expected package.AbstractMap#toString
Copyright © 1996–2019 Geotools. All rights reserved.