Class DefaultIndividual
java.lang.Object
org.apache.sis.metadata.AbstractMetadata
org.apache.sis.metadata.ModifiableMetadata
org.apache.sis.metadata.iso.ISOMetadata
org.apache.sis.metadata.iso.citation.AbstractParty
org.apache.sis.metadata.iso.citation.DefaultIndividual
- All Implemented Interfaces:
Serializable
,Emptiable
,LenientComparable
,IdentifiedObject
@UML(identifier="CI_Individual",
specification=ISO_19115)
public class DefaultIndividual
extends AbstractParty
Information about the party if the party is an individual.
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
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
Individual
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
- Version:
- 1.0
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class org.apache.sis.metadata.ModifiableMetadata
ModifiableMetadata.State
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate org.opengis.util.InternationalString
Position of the individual in an organization.private static final long
Serial number for inter-operability with different versions.Fields inherited from class org.apache.sis.metadata.iso.ISOMetadata
identifiers
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs an initially empty individual.DefaultIndividual
(CharSequence name, CharSequence positionName, org.opengis.metadata.citation.Contact contactInfo) Constructs an individual initialized to the specified values.DefaultIndividual
(DefaultIndividual object) Constructs a new instance initialized with the values from the specified metadata object. -
Method Summary
Modifier and TypeMethodDescriptionorg.opengis.util.InternationalString
Returns position of the individual in an organization, ornull
if none.void
setPositionName
(org.opengis.util.InternationalString newValue) Sets a new position of the individual in an organization.Methods inherited from class org.apache.sis.metadata.iso.citation.AbstractParty
getContactInfo, getIdentifiers, getName, setContactInfo, setIdentifiers, setName
Methods inherited from class org.apache.sis.metadata.iso.ISOMetadata
getIdentifier, getIdentifierMap, getStandard, setIdentifier, transitionTo
Methods inherited from class org.apache.sis.metadata.ModifiableMetadata
checkWritePermission, collectionType, copyCollection, copyList, copyMap, copySet, deepCopy, nonNullCollection, nonNullList, nonNullMap, nonNullSet, singleton, state, writeCollection, writeList, writeMap, writeSet
Methods inherited from class org.apache.sis.metadata.AbstractMetadata
asMap, asTreeTable, equals, equals, getInterface, hashCode, isEmpty, prune, toString
-
Field Details
-
serialVersionUID
private static final long serialVersionUIDSerial number for inter-operability with different versions.- See Also:
-
positionName
private org.opengis.util.InternationalString positionNamePosition of the individual in an organization.
-
-
Constructor Details
-
DefaultIndividual
public DefaultIndividual()Constructs an initially empty individual. -
DefaultIndividual
public DefaultIndividual(CharSequence name, CharSequence positionName, org.opengis.metadata.citation.Contact contactInfo) Constructs an individual initialized to the specified values.- Parameters:
name
- name of the individual.positionName
- position of the individual in an organization.contactInfo
- contact information for the individual.
-
DefaultIndividual
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.- Parameters:
object
- the metadata to copy values from, ornull
if none.
-
-
Method Details
-
getPositionName
@UML(identifier="positionName", obligation=CONDITIONAL, specification=ISO_19115) public org.opengis.util.InternationalString getPositionName()Returns position of the individual in an organization, ornull
if none.- Returns:
- position of the individual in an organization, or
null
if none.
-
setPositionName
public void setPositionName(org.opengis.util.InternationalString newValue) Sets a new position of the individual in an organization.- Parameters:
newValue
- the new position of the individual in an organization.
-