Interface SearchTrace
-
- All Superinterfaces:
ImmutableTrace
public interface SearchTrace extends ImmutableTrace
A trace contains information about processed data. A trace should conform to the trace model defined by Hansken. Unlike aTrace
, theSearchTrace
contains information about the searched trace. It is able to directly retrieve all the data contexts belonging to a searched trace. When data type is known aRandomAccessData
can be retrieved directly.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RandomAccessData
getData(String type)
Returns aRandomAccessData
for a specific trace data type.List<String>
getDataTypes()
Returns all available data types for this search trace.-
Methods inherited from interface org.hansken.plugin.extraction.api.ImmutableTrace
get, properties, traceId, types
-
-
-
-
Method Detail
-
getData
RandomAccessData getData(String type)
Returns aRandomAccessData
for a specific trace data type.- Parameters:
type
- the data type of the data stream to be retrieved- Returns:
- the data stream
-
-