Package eu.clarin.sru.client
Interface SRURecordData
-
- All Known Implementing Classes:
SRUExplainRecordData
,SRUSurrogateRecordData
public interface SRURecordData
Interface for parsed record data objects.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getRecordSchema()
The record schema for this record.boolean
isTransient()
This record is transient.
-
-
-
Method Detail
-
isTransient
boolean isTransient()
This record is transient. If you want to store the data to process it later, you need to create a copy of the data.- Returns:
true
, if record is transient,false
otherwise
-
getRecordSchema
String getRecordSchema()
The record schema for this record.- Returns:
- the record schema
-
-