Package org.opengis.filter.identity
Interface GmlObjectId
-
- All Superinterfaces:
Identifier
- All Known Implementing Classes:
GmlObjectIdImpl
@XmlElement("GMLObjectId") public interface GmlObjectId extends Identifier
Feature and Geometry identifier for GML3 specification.GML3 constructs are are identified with a String, commonly referred to as a "id".
- Since:
- GeoAPI 2.0
- Author:
- Chris Dillard (SYS Technologies), Justin Deoliveira (The Open Planning Project)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getID()
The identifier value, which is a string.boolean
matches(Object object)
Evaluates the identifer value against the given object.-
Methods inherited from interface Identifier
equals, hashCode, toString
-
-
-
-
Method Detail
-
getID
@XmlElement("id") String getID()
The identifier value, which is a string.- Specified by:
getID
in interfaceIdentifier
-
matches
boolean matches(Object object)
Evaluates the identifer value against the given object.- Specified by:
matches
in interfaceIdentifier
- Parameters:
object
- The construct to be tested.- Returns:
true
if a match, otherwisefalse
.
-
-