| org.geotools.metadata.iso.MetadataEntity org.geotools.metadata.iso.IdentifierImpl
IdentifierImpl | public class IdentifierImpl extends MetadataEntity implements Identifier(Code) | | Value uniquely identifying an object within a namespace.
version: $Id: IdentifierImpl.java 25189 2007-04-17 13:23:47Z desruisseaux $ author: Martin Desruisseaux author: Touraïvane since: 2.1 |
Constructor Summary | |
public | IdentifierImpl() Construct an initially empty identifier. | public | IdentifierImpl(Identifier source) Constructs a metadata entity initialized with the values from the specified metadata. | public | IdentifierImpl(String code) Creates an identifier initialized to the given code. | public | IdentifierImpl(Citation authority, String code) Creates an identifier initialized to the given authority and code. |
Method Summary | |
public Citation | getAuthority() Organization or party responsible for definition and maintenance of the
. | public String | getCode() Alphanumeric value identifying an instance in the namespace. | public String | getVersion() Identifier of the version of the associated code, as specified
by the code space or code authority. | public synchronized void | setAuthority(Citation newValue) Set the organization or party responsible for definition and maintenance of the
. | public synchronized void | setCode(String newValue) Set the alphanumeric value identifying an instance in the namespace. | public synchronized void | setVersion(String newValue) Set an identifier of the version of the associated code. |
IdentifierImpl | public IdentifierImpl()(Code) | | Construct an initially empty identifier.
|
IdentifierImpl | public IdentifierImpl(Identifier source)(Code) | | Constructs a metadata entity initialized with the values from the specified metadata.
since: 2.4 |
IdentifierImpl | public IdentifierImpl(String code)(Code) | | Creates an identifier initialized to the given code.
|
IdentifierImpl | public IdentifierImpl(Citation authority, String code)(Code) | | Creates an identifier initialized to the given authority and code.
since: 2.2 |
getAuthority | public Citation getAuthority()(Code) | | Organization or party responsible for definition and maintenance of the
.
The authority, or null if not available. |
getCode | public String getCode()(Code) | | Alphanumeric value identifying an instance in the namespace.
The code. |
getVersion | public String getVersion()(Code) | | Identifier of the version of the associated code, as specified
by the code space or code authority. This version is included only when the
uses versions.
When appropriate, the edition is identified by the effective date, coded using
ISO 8601 date format.
The version, or null if not available. |
setAuthority | public synchronized void setAuthority(Citation newValue)(Code) | | Set the organization or party responsible for definition and maintenance of the
.
|
setCode | public synchronized void setCode(String newValue)(Code) | | Set the alphanumeric value identifying an instance in the namespace.
|
setVersion | public synchronized void setVersion(String newValue)(Code) | | Set an identifier of the version of the associated code.
|
|
|