public class AbstractGeographicExtent extends ISOMetadata implements GeographicExtent
Defined in the sis-metadata module
identifiers, LOGGER
Constructor and Description |
---|
AbstractGeographicExtent()
Constructs an initially empty geographic extent.
|
AbstractGeographicExtent(boolean inclusion)
Constructs a geographic extent initialized with the specified inclusion value.
|
AbstractGeographicExtent(GeographicExtent object)
Constructs a new instance initialized with the values from the specified metadata object.
|
Modifier and Type | Method and Description |
---|---|
static AbstractGeographicExtent |
castOrCopy(GeographicExtent object)
Returns a SIS metadata implementation with the values of the given arbitrary implementation.
|
Boolean |
getInclusion()
Indication of whether the bounding polygon encompasses an area covered by the data
(inclusion) or an area where data is not present (exclusion).
|
void |
setInclusion(Boolean newValue)
Sets whether the bounding polygon encompasses an area covered by the data
(inclusion) or an area where data is not present (exclusion).
|
getIdentifierMap, getIdentifiers, getStandard
checkWritePermission, clone, collectionType, copyCollection, copyList, copySet, freeze, isModifiable, nonNullCollection, nonNullList, nonNullSet, singleton, unmodifiable, writeCollection, writeList, writeSet
asMap, asTreeTable, equals, equals, getInterface, hashCode, isEmpty, prune, toString
public AbstractGeographicExtent()
public AbstractGeographicExtent(boolean inclusion)
inclusion
- Whether the bounding polygon encompasses an area covered by the data.public AbstractGeographicExtent(GeographicExtent object)
object
- The metadata to copy values from, or null
if none.castOrCopy(GeographicExtent)
public static AbstractGeographicExtent castOrCopy(GeographicExtent object)
null
, then this method returns null
.BoundingPolygon
,
GeographicBoundingBox
or GeographicDescription
, then this method
delegates to the castOrCopy(…)
method of the corresponding SIS subclass.
Note that if the given object implements more than one of the above-cited interfaces,
then the castOrCopy(…)
method to be used is unspecified.AbstractGeographicExtent
, then it is returned unchanged.AbstractGeographicExtent
instance is created using the
copy constructor
and returned. Note that this is a shallow copy operation, since the other
metadata contained in the given object are not recursively copied.object
- The object to get as a SIS implementation, or null
if none.null
if the argument was null.public Boolean getInclusion()
getInclusion
in interface GeographicExtent
true
for inclusion, or false
for exclusion.public void setInclusion(Boolean newValue)
newValue
- true
if the bounding polygon encompasses an area covered by the data.Copyright © 2010–2013 The Apache Software Foundation. All rights reserved.