Uses of Interface
org.geotools.api.util.GenericName
-
Packages that use GenericName Package Description org.geotools.api.referencing org.geotools.api.util A set of base types from ISO 19103 which can not be mapped directly from Java, plus utilities.org.geotools.parameter Parameter implementation.org.geotools.referencing Reference systems implementation.org.geotools.temporal.reference org.geotools.util Contains utilities and addition to the collection framework. -
-
Uses of GenericName in org.geotools.api.referencing
Methods in org.geotools.api.referencing that return types with arguments of type GenericName Modifier and Type Method Description Collection<GenericName>
IdentifiedObject. getAlias()
An alternative name by which this object is identified. -
Uses of GenericName in org.geotools.api.util
Subinterfaces of GenericName in org.geotools.api.util Modifier and Type Interface Description interface
LocalName
Identifier within a name space for a local object.interface
MemberName
The name to identify a member of a record.interface
ScopedName
A composite of a local name (as head) for locating another name space, and a generic name (as tail) valid in that name space.interface
TypeName
The name of an attribute type.Methods in org.geotools.api.util that return GenericName Modifier and Type Method Description GenericName
NameFactory. createGenericName(NameSpace scope, CharSequence... parsedNames)
Creates a local or scoped name from an array of parsed names.GenericName
NameSpace. name()
Represents the identifier of this namespace.GenericName
NameFactory. parseGenericName(NameSpace scope, CharSequence name)
Constructs a generic name from a qualified name.GenericName
ScopedName. path()
Returns every elements of the parsed names list except for the tip.GenericName
ScopedName. tail()
Returns every elements of the parsed names list except for the head.GenericName
GenericName. toFullyQualifiedName()
Returns a view of this name as a fully-qualified name.Methods in org.geotools.api.util with parameters of type GenericName Modifier and Type Method Description NameSpace
NameFactory. createNameSpace(GenericName name, String headSeparator, String separator)
Creates a namespace having the given name and separators.ScopedName
GenericName. push(GenericName scope)
Returns this name expanded with the specified scope. -
Uses of GenericName in org.geotools.parameter
Methods in org.geotools.parameter that return types with arguments of type GenericName Modifier and Type Method Description Collection<GenericName>
MatrixParameters. getAlias()
Forward the call to the matrix parameter descriptors specified at construction time. -
Uses of GenericName in org.geotools.referencing
Classes in org.geotools.referencing that implement GenericName Modifier and Type Class Description class
NamedIdentifier
An identification of a CRS object.Fields in org.geotools.referencing declared as GenericName Modifier and Type Field Description static GenericName[]
AbstractIdentifiedObject. EMPTY_ALIAS_ARRAY
An empty array of alias.Methods in org.geotools.referencing that return GenericName Modifier and Type Method Description GenericName
NamedIdentifier. toFullyQualifiedName()
Returns a view of this name as a fully-qualified name.Methods in org.geotools.referencing that return types with arguments of type GenericName Modifier and Type Method Description Collection<GenericName>
AbstractIdentifiedObject. getAlias()
An alternative name by which this object is identified.Methods in org.geotools.referencing with parameters of type GenericName Modifier and Type Method Description int
NamedIdentifier. compareTo(GenericName object)
Compares this name with the specified object for order.ScopedName
NamedIdentifier. push(GenericName scope)
Returns this name expanded with the specified scope. -
Uses of GenericName in org.geotools.temporal.reference
Methods in org.geotools.temporal.reference that return types with arguments of type GenericName Modifier and Type Method Description Collection<GenericName>
DefaultTemporalReferenceSystem. getAlias()
-
Uses of GenericName in org.geotools.util
Classes in org.geotools.util that implement GenericName Modifier and Type Class Description class
GenericName
Base class for generic scoped and local name structure for type and attribute name in the context of name spaces.class
LocalName
Identifier within a name space for a local object.class
ScopedName
Fully qualified identifier for an object.Methods in org.geotools.util that return GenericName Modifier and Type Method Description static GenericName
NameFactory. create(CharSequence... names)
Constructs a generic name from an array of local names and the default separator character.static GenericName
NameFactory. create(CharSequence[] names, char separator)
Constructs a generic name from an array of local names and the specified separator character.static GenericName
NameFactory. create(String name)
Constructs a generic name from a fully qualified name and the default separator character.static GenericName
NameFactory. create(String name, char separator)
Constructs a generic name from a fully qualified name and the specified separator character.protected abstract GenericName
GenericName. getInternalScope()
Returns the scope (name space) of this generic name.protected GenericName
LocalName. getInternalScope()
Returns the scope (name space) of this generic name.protected GenericName
ScopedName. getInternalScope()
GenericName
ScopedName. path()
Returns a name which contains every element of the parsed names list except for the last element.GenericName
ScopedName. tail()
Returns the tail of this scoped name.static GenericName[]
NameFactory. toArray(Object value)
Returns the specified name in an array.GenericName
LocalName. toFullyQualifiedName()
Returns a view of this name as a fully-qualified name.GenericName
ScopedName. toFullyQualifiedName()
Returns a view of this name as a fully-qualified name.Methods in org.geotools.util with parameters of type GenericName Modifier and Type Method Description int
GenericName. compareTo(GenericName that)
Compares this name with the specified object for order.int
LocalName. compareTo(GenericName object)
Compares this name with the specified object for order.ScopedName
LocalName. push(GenericName scope)
Returns this name expanded with the specified scope.ScopedName
ScopedName. push(GenericName scope)
Returns this name expanded with the specified scope.Constructors in org.geotools.util with parameters of type GenericName Constructor Description ScopedName(GenericName scope, char separator, CharSequence name)
Constructs a scoped name from the specified international string.ScopedName(GenericName scope, CharSequence name)
Constructs a scoped name from the specified international string.
-