Interface ResultData
- All Known Implementing Classes:
ListResultData
,MapResultData
,ValueResultData
public interface ResultData
The interface ResultData represents a result from samples processing.
- Since:
- 3.0
-
Method Summary
Modifier and TypeMethodDescription<T> T
accept
(ResultDataVisitor<T> visitor) Accepts the specified visitor.
-
Method Details
-
accept
Accepts the specified visitor.- Type Parameters:
T
- type of the results of theResultDataVisitor
- Parameters:
visitor
- the visitor (must not benull
)- Returns:
- result of the visit
-