Package org.geotools.api.filter.identity
Interface RecordId
-
- All Superinterfaces:
Identifier
public interface RecordId extends Identifier
RecordId refered to by CSW-2 specification.Records are identified with a String, commonly referred to as an "id". We are using SimpleFeature to represent a Record at the moment (since our Record does not have a getID() method).
- Since:
- GeoAPI 2.1
- Author:
- Jody Garnett, Refractions Research Inc.
-
-
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 record)
Evaluates the identifer value against the given record.-
Methods inherited from interface Identifier
equals, hashCode, toString
-
-
-
-
Method Detail
-
getID
String getID()
The identifier value, which is a string.- Specified by:
getID
in interfaceIdentifier
-
matches
boolean matches(Object record)
Evaluates the identifer value against the given record.- Specified by:
matches
in interfaceIdentifier
- Parameters:
record
- The recrod construct to be tested.- Returns:
true
if a match, otherwisefalse
-
-