Class DefaultContact
- Object
-
- AbstractMetadata
-
- ModifiableMetadata
-
- ISOMetadata
-
- DefaultContact
-
- All Implemented Interfaces:
Serializable,Emptiable,LenientComparable,IdentifiedObject,Contact
public class DefaultContact extends ISOMetadata implements Contact
Information required to enable contact with the responsible person and/or organization.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
XMLinstead.
- Since:
- 0.3
- See Also:
- Serialized Form
Defined in the
sis-metadatamodule
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class ModifiableMetadata
ModifiableMetadata.State
-
-
Field Summary
-
Fields inherited from class ISOMetadata
identifiers
-
-
Constructor Summary
Constructors Constructor Description DefaultContact()Constructs an initially empty contact.DefaultContact(Contact object)Constructs a new instance initialized with the values from the specified metadata object.DefaultContact(OnlineResource resource)Constructs a contact initialized to the specified online resource.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static DefaultContactcastOrCopy(Contact object)Returns a SIS metadata implementation with the values of the given arbitrary implementation.AddressgetAddress()Deprecated.As of ISO 19115:2014, replaced bygetAddresses().Collection<Address>getAddresses()Returns the physical and email addresses at which the organization or individual may be contacted.InternationalStringgetContactInstructions()Returns supplemental instructions on how or when to contact the individual or organization.InternationalStringgetContactType()Type of the contact.InternationalStringgetHoursOfService()Returns the time period (including time zone) when individuals can contact the organization or individual.OnlineResourcegetOnlineResource()Deprecated.As of ISO 19115:2014, replaced bygetOnlineResources().Collection<OnlineResource>getOnlineResources()Returns on-line information that can be used to contact the individual or organization.TelephonegetPhone()Deprecated.As of ISO 19115:2014, replaced bygetPhones().Collection<Telephone>getPhones()Returns telephone numbers at which the organization or individual may be contacted.voidsetAddress(Address newValue)Deprecated.As of ISO 19115:2014, replaced bysetAddresses(Collection).voidsetAddresses(Collection<? extends Address> newValues)Sets the physical and email addresses at which the organization or individual may be contacted.voidsetContactInstructions(InternationalString newValue)Sets supplemental instructions on how or when to contact the individual or organization.voidsetContactType(InternationalString newValue)Sets new type of the contact.voidsetHoursOfService(InternationalString newValue)Sets time period (including time zone) when individuals can contact the organization or individual.voidsetOnlineResource(OnlineResource newValue)Deprecated.As of ISO 19115:2014, replaced bysetOnlineResources(Collection).voidsetOnlineResources(Collection<? extends OnlineResource> newValues)Sets on-line information that can be used to contact the individual or organization.voidsetPhone(Telephone newValue)Deprecated.As of ISO 19115:2014, replaced bysetPhones(Collection).voidsetPhones(Collection<? extends Telephone> newValues)Sets telephone numbers at which the organization or individual may be contacted.-
Methods inherited from class ISOMetadata
getIdentifier, getIdentifierMap, getIdentifiers, getStandard, setIdentifier, transitionTo
-
Methods inherited from class ModifiableMetadata
checkWritePermission, checkWritePermission, collectionType, copyCollection, copyList, copyMap, copySet, freeze, isModifiable, nonNullCollection, nonNullList, nonNullMap, nonNullSet, singleton, state, unmodifiable, writeCollection, writeList, writeMap, writeSet
-
Methods inherited from class AbstractMetadata
asMap, asTreeTable, equals, equals, getInterface, hashCode, isEmpty, prune, toString
-
-
-
-
Constructor Detail
-
DefaultContact
public DefaultContact()
Constructs an initially empty contact.
-
DefaultContact
public DefaultContact(OnlineResource resource)
Constructs a contact initialized to the specified online resource.- Parameters:
resource- the on-line information that can be used to contact the individual or organization, ornullif none.
-
DefaultContact
public DefaultContact(Contact object)
Constructs a new instance initialized with the values from the specified metadata object. This is a shallow copy constructor, since the other metadata contained in the given object are not recursively copied.- Parameters:
object- the metadata to copy values from, ornullif none.- See Also:
castOrCopy(Contact)
-
-
Method Detail
-
castOrCopy
public static DefaultContact castOrCopy(Contact object)
Returns a SIS metadata implementation with the values of the given arbitrary implementation. This method performs the first applicable action in the following choices:- If the given object is
null, then this method returnsnull. - Otherwise if the given object is already an instance of
DefaultContact, then it is returned unchanged. - Otherwise a new
DefaultContactinstance 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.
- Parameters:
object- the object to get as a SIS implementation, ornullif none.- Returns:
- a SIS implementation containing the values of the given object (may be the
given object itself), or
nullif the argument was null.
- If the given object is
-
getPhones
@UML(identifier="phone", obligation=OPTIONAL, specification=ISO_19115) public Collection<Telephone> getPhones()
Returns telephone numbers at which the organization or individual may be contacted.- Returns:
- telephone numbers at which the organization or individual may be contacted.
- Since:
- 0.5
-
setPhones
public void setPhones(Collection<? extends Telephone> newValues)
Sets telephone numbers at which the organization or individual may be contacted.- Parameters:
newValues- the new telephones.- Since:
- 0.5
-
getPhone
@Deprecated public Telephone getPhone()
Deprecated.As of ISO 19115:2014, replaced bygetPhones().Returns telephone numbers at which the organization or individual may be contacted. This method returns the first telephone number associated toTelephoneType.VOICEorTelephoneType.FACSIMILE FACSIMILE.
-
setPhone
@Deprecated public void setPhone(Telephone newValue)
Deprecated.As of ISO 19115:2014, replaced bysetPhones(Collection).Sets telephone numbers at which the organization or individual may be contacted. This method delegates tosetPhones(Collection).- Parameters:
newValue- the new telephone, ornullif none.
-
getAddresses
@UML(identifier="address", obligation=OPTIONAL, specification=ISO_19115) public Collection<Address> getAddresses()
Returns the physical and email addresses at which the organization or individual may be contacted.- Returns:
- physical and email addresses at which the organization or individual may be contacted, or
null. - Since:
- 0.5
-
setAddresses
public void setAddresses(Collection<? extends Address> newValues)
Sets the physical and email addresses at which the organization or individual may be contacted.- Parameters:
newValues- the new addresses.- Since:
- 0.5
-
getAddress
@Deprecated public Address getAddress()
Deprecated.As of ISO 19115:2014, replaced bygetAddresses().Returns the physical and email address at which the organization or individual may be contacted. This method returns the firstadresselement, or null if none.- Specified by:
getAddressin interfaceContact- Returns:
- physical and email address at which the organization or individual may be contacted, or
null.
-
setAddress
@Deprecated public void setAddress(Address newValue)
Deprecated.As of ISO 19115:2014, replaced bysetAddresses(Collection).Sets the physical and email address at which the organization or individual may be contacted. This method delegates tosetAddresses(Collection).- Parameters:
newValue- the new address, ornullif none.
-
getOnlineResources
@UML(identifier="onlineResource", obligation=OPTIONAL, specification=ISO_19115) public Collection<OnlineResource> getOnlineResources()
Returns on-line information that can be used to contact the individual or organization.- Returns:
- on-line information that can be used to contact the individual or organization.
- Since:
- 0.5
-
setOnlineResources
public void setOnlineResources(Collection<? extends OnlineResource> newValues)
Sets on-line information that can be used to contact the individual or organization.- Parameters:
newValues- the new online resources.- Since:
- 0.5
-
getOnlineResource
@Deprecated public OnlineResource getOnlineResource()
Deprecated.As of ISO 19115:2014, replaced bygetOnlineResources().Returns on-line information that can be used to contact the individual or organization. This method returns the firstonline resourceelement, or null if none.- Specified by:
getOnlineResourcein interfaceContact- Returns:
- on-line information that can be used to contact the individual or organization, or
null.
-
setOnlineResource
@Deprecated public void setOnlineResource(OnlineResource newValue)
Deprecated.As of ISO 19115:2014, replaced bysetOnlineResources(Collection).Sets on-line information that can be used to contact the individual or organization. This method delegates tosetOnlineResources(Collection).- Parameters:
newValue- the new online resource, ornullif none.
-
getHoursOfService
public InternationalString getHoursOfService()
Returns the time period (including time zone) when individuals can contact the organization or individual.Upcoming API change — multiplicity
As of ISO 19115:2014, this singleton has been replaced by a collection. This change will tentatively be applied in GeoAPI 4.0.- Specified by:
getHoursOfServicein interfaceContact- Returns:
- time period when individuals can contact the organization or individual.
-
setHoursOfService
public void setHoursOfService(InternationalString newValue)
Sets time period (including time zone) when individuals can contact the organization or individual.Upcoming API change — multiplicity
As of ISO 19115:2014, this singleton has been replaced by a collection. This change will tentatively be applied in GeoAPI 4.0.- Parameters:
newValue- the new hours of service.
-
getContactInstructions
public InternationalString getContactInstructions()
Returns supplemental instructions on how or when to contact the individual or organization.- Specified by:
getContactInstructionsin interfaceContact- Returns:
- supplemental instructions on how or when to contact the individual or organization, or
null.
-
setContactInstructions
public void setContactInstructions(InternationalString newValue)
Sets supplemental instructions on how or when to contact the individual or organization.- Parameters:
newValue- the new contact instructions, ornullif none.
-
getContactType
@UML(identifier="contactType", obligation=OPTIONAL, specification=ISO_19115) public InternationalString getContactType()
Type of the contact. Returnsnullif none.- Returns:
- type of the contact, or
nullif none. - Since:
- 0.5
-
setContactType
public void setContactType(InternationalString newValue)
Sets new type of the contact.- Parameters:
newValue- the new type of the contact.- Since:
- 0.5
-
-