Package org.apache.sis.util.iso
Class DefaultLocalName
- Object
-
- AbstractName
-
- DefaultLocalName
-
- All Implemented Interfaces:
Serializable,Comparable<GenericName>,GenericName,LocalName
- Direct Known Subclasses:
DefaultMemberName,DefaultTypeName
public class DefaultLocalName extends AbstractName implements LocalName
Identifier within a name space for a local object. Local names are names which are directly accessible to and maintained by a name space. Names are local to one and only one name space. The name space within which they are local is indicated by the scope.DefaultLocalNamecan be instantiated by any of the following methods:DefaultNameFactory.createLocalName(NameSpace, CharSequence).DefaultNameFactory.createGenericName(NameSpace, CharSequence[])with an array of length 1.DefaultNameFactory.parseGenericName(NameSpace, CharSequence)with no occurrence of the separator in the path.- Similar static convenience methods in
Names.
Immutability and thread safetyThis class is immutable and thus inherently thread-safe if theNameSpaceandCharSequencearguments given to the constructor are also immutable. Subclasses shall make sure that any overridden methods remain safe to call from multiple threads and do not change any publicLocalNamestate.- Since:
- 0.3
- See Also:
DefaultNameSpace,DefaultScopedName, Serialized Form
Defined in the
sis-metadatamodule
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedDefaultLocalName(NameSpace scope, CharSequence name)Constructs a local name from the given character sequence.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static DefaultLocalNamecastOrCopy(LocalName object)Returns a SIS local name implementation with the values of the given arbitrary implementation.intcompareTo(GenericName name)Compares this name with the specified object for order.intdepth()Returns the depth, which is always 1 for a local name.booleanequals(Object object)Compares this local name with the specified object for equality.List<DefaultLocalName>getParsedNames()Returns the sequence of local name for this name.LocalNamehead()Returnsthissince this object is already a local name.NameSpacescope()Returns the scope (name space) in which this name is local.LocalNametip()Returnsthissince this object is already a local name.InternationalStringtoInternationalString()Returns a local-dependent string representation of this local name.StringtoString()Returns a locale-independent string representation of this local name.-
Methods inherited from class AbstractName
castOrCopy, hashCode, push, toFullyQualifiedName
-
Methods inherited from class Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface GenericName
push, toFullyQualifiedName
-
-
-
-
Constructor Detail
-
DefaultLocalName
protected DefaultLocalName(NameSpace scope, CharSequence name)
Constructs a local name from the given character sequence. If the character sequence is an instance ofInternationalString, then itstoString(Locale.ROOT)method will be invoked for fetching an unlocalized name. Otherwise theCharSequence.toString()method will be used.- Parameters:
scope- the scope of this name, ornullfor a global scope.name- the local name (nevernull).
-
-
Method Detail
-
castOrCopy
public static DefaultLocalName castOrCopy(LocalName object)
Returns a SIS local name 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 an instance of
MemberNameorTypeName, then this method delegates tocastOrCopy(…)method of the corresponding subclass. - Otherwise if the given object is already an instance of
DefaultLocalName, then it is returned unchanged. - Otherwise a new
DefaultLocalNameinstance is created with the same values than the given name.
- 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
-
scope
public NameSpace scope()
Returns the scope (name space) in which this name is local. This method returns a non-null value in all cases, even when the scope given to the constructor was null.- Specified by:
scopein interfaceGenericName- Specified by:
scopein classAbstractName- Returns:
- the scope of this name.
-
depth
public final int depth()
Returns the depth, which is always 1 for a local name.- Specified by:
depthin interfaceGenericName- Specified by:
depthin interfaceLocalName- Overrides:
depthin classAbstractName- Returns:
- the depth of this name.
-
getParsedNames
public final List<DefaultLocalName> getParsedNames()
Returns the sequence of local name for this name. Since this object is itself a local name, this method always returns a singleton containing onlythis.- Specified by:
getParsedNamesin interfaceGenericName- Specified by:
getParsedNamesin interfaceLocalName- Specified by:
getParsedNamesin classAbstractName- Returns:
- the local names making this generic name, without the scope.
Shall never be
nullneither empty.
-
head
public final LocalName head()
Returnsthissince this object is already a local name.- Specified by:
headin interfaceGenericName- Specified by:
headin interfaceLocalName- Overrides:
headin classAbstractName- Returns:
this.
-
tip
public final LocalName tip()
Returnsthissince this object is already a local name.- Specified by:
tipin interfaceGenericName- Specified by:
tipin interfaceLocalName- Overrides:
tipin classAbstractName- Returns:
this.
-
toString
public String toString()
Returns a locale-independent string representation of this local name. This string does not include the scope, which is consistent with the parsed names definition.- Specified by:
toStringin interfaceGenericName- Specified by:
toStringin interfaceLocalName- Overrides:
toStringin classAbstractName- Returns:
- a local-independent string representation of this name.
-
toInternationalString
public InternationalString toInternationalString()
Returns a local-dependent string representation of this local name.- Specified by:
toInternationalStringin interfaceGenericName- Overrides:
toInternationalStringin classAbstractName- Returns:
- a localizable string representation of this name.
-
compareTo
public int compareTo(GenericName name)
Compares this name with the specified object for order. Returns a negative integer, zero, or a positive integer as this name lexicographically precedes, is equal to, or follows the specified object.- Specified by:
compareToin interfaceComparable<GenericName>- Overrides:
compareToin classAbstractName- Parameters:
name- the other name to compare with this name.- Returns:
- -1 if this name precedes the given one, +1 if it follows, 0 if equals.
-
equals
public boolean equals(Object object)
Compares this local name with the specified object for equality.- Overrides:
equalsin classAbstractName- Parameters:
object- the object to compare with this name for equality.- Returns:
trueif the given object is equal to this name.
-
-