Package elki.result
Interface IterableResult<O>
-
- Type Parameters:
O- object class.
- All Superinterfaces:
java.lang.Iterable<O>
- All Known Implementing Classes:
CollectionResult,HistogramResult,IndexStatistics.IndexMetaResult,JudgeOutlierScores.ScoreResult,OPTICSXi.SteepAreaResult,ReferencePointsResult
public interface IterableResult<O> extends java.lang.Iterable<O>Interface of an "iterable" result (e.g., a list, table) that can be printed one-by-one. (At least when the class O is TextWriteable)- Since:
- 0.2
- Author:
- Erich Schubert
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Iterator<O>iterator()Retrieve an iterator for the result.
-