Package org.opengis.util
Interface MemberName
-
- All Superinterfaces:
Comparable<GenericName>,GenericName,LocalName
@UML(identifier="MemberName", specification=ISO_19103) public interface MemberName extends LocalName
The name to identify a member of a record. In aRecordcontaining an arbitrary amount of attributes:- Since:
- 2.1
-
-
Method Summary
Modifier and Type Method Description TypeNamegetAttributeType()Returns the type of the data associated with the record member.StringtoString()Returns the name of the member.-
Methods inherited from interface GenericName
compareTo, push, scope, toFullyQualifiedName, toInternationalString
-
Methods inherited from interface LocalName
depth, getParsedNames, head, tip
-
-
-
-
Method Detail
-
getAttributeType
@UML(identifier="attributeType", obligation=MANDATORY, specification=ISO_19103) TypeName getAttributeType()
Returns the type of the data associated with the record member.- Returns:
- the type of the data associated with the record member.
-
toString
@UML(identifier="aName", obligation=MANDATORY, specification=ISO_19103) String toString()
Returns the name of the member. Member names typically use a'.'navigation separator, so that their fully qualified name is of the form"[schema].[type].[member]".
-
-