Interface ISubmissionSummary
-
- All Known Implementing Classes:
SubmissionSummary
public interface ISubmissionSummary
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.List<ITuple<java.lang.Long,java.lang.Float>>
getMatchingSubmissions()
Retrieves the matching submission list.long
getPersistentId()
Retrieves the submission id.float
getScore()
Retrieves the score.
-
-
-
Method Detail
-
getPersistentId
long getPersistentId()
Retrieves the submission id.- Returns:
- the persistent id of this submission.
-
getScore
float getScore()
Retrieves the score.- Returns:
- the overall score for this submission.
-
getMatchingSubmissions
java.util.List<ITuple<java.lang.Long,java.lang.Float>> getMatchingSubmissions()
Retrieves the matching submission list.- Returns:
- the list of matching submissions and their relative scores.
-
-