Interface Indictment<Score_ extends Score<Score_>>
- Type Parameters:
Score_
- the actual score type
- All Known Implementing Classes:
DefaultIndictment
public interface Indictment<Score_ extends Score<Score_>>
Explains the
Score
of a PlanningSolution
, from the opposite side than ConstraintMatchTotal
.
Retrievable from ScoreExplanation.getIndictmentMap()
.-
Method Summary
Modifier and TypeMethodDescriptiondefault int
<IndictedObject_>
IndictedObject_The object that was involved in causing the constraints to match.default Object
Deprecated, for removal: This API element is subject to removal in a future version.RetrieveConstraintJustification
instances associated withConstraintMatch
es ingetConstraintMatchSet()
.default <ConstraintJustification_ extends ConstraintJustification>
List<ConstraintJustification_>getJustificationList
(Class<ConstraintJustification_> justificationClass) RetrieveConstraintJustification
instances associated withConstraintMatch
es ingetConstraintMatchSet()
, which are of (or extend) a given constraint justification implementation.getScore()
Sum of thegetConstraintMatchSet()
'sConstraintMatch.getScore()
.
-
Method Details
-
getJustification
Deprecated, for removal: This API element is subject to removal in a future version.PrefergetIndictedObject()
.As defined bygetIndictedObject()
.This is a poorly named legacy method, which does not in fact return a justification, but an indicted object. Each indictment may have multiple justifications, and they are accessed by
getJustificationList()
.- Returns:
- never null
-
getIndictedObject
<IndictedObject_> IndictedObject_ getIndictedObject()The object that was involved in causing the constraints to match. It is part ofConstraintMatch.getIndictedObjectList()
of everyConstraintMatch
returned bygetConstraintMatchSet()
.- Type Parameters:
IndictedObject_
- Shorthand so that the user does not need to cast in user code.- Returns:
- never null
-
getConstraintMatchSet
Set<ConstraintMatch<Score_>> getConstraintMatchSet()- Returns:
- never null
-
getConstraintMatchCount
default int getConstraintMatchCount()- Returns:
>= 0
-
getJustificationList
List<ConstraintJustification> getJustificationList()RetrieveConstraintJustification
instances associated withConstraintMatch
es ingetConstraintMatchSet()
. This is equivalent to retrievinggetConstraintMatchSet()
and collecting allConstraintMatch.getJustification()
objects into a list.- Returns:
- never null, guaranteed to contain unique instances
-
getJustificationList
default <ConstraintJustification_ extends ConstraintJustification> List<ConstraintJustification_> getJustificationList(Class<ConstraintJustification_> justificationClass) RetrieveConstraintJustification
instances associated withConstraintMatch
es ingetConstraintMatchSet()
, which are of (or extend) a given constraint justification implementation. This is equivalent to retrievinggetConstraintMatchSet()
and collecting all matchingConstraintMatch.getJustification()
objects into a list.- Returns:
- never null, guaranteed to contain unique instances
-
getScore
Score_ getScore()Sum of thegetConstraintMatchSet()
'sConstraintMatch.getScore()
.- Returns:
- never null
-
getIndictedObject()
.