public class SimpleScoreDefinition extends AbstractScoreDefinition<SimpleScore>
| Constructor and Description |
|---|
SimpleScoreDefinition() |
| Modifier and Type | Method and Description |
|---|---|
SimpleScore |
buildOptimisticBound(InitializingScoreTrend initializingScoreTrend,
SimpleScore score)
|
SimpleScore |
buildPessimisticBound(InitializingScoreTrend initializingScoreTrend,
SimpleScore score)
|
SimpleScoreHolder |
buildScoreHolder(boolean constraintMatchEnabled)
Used by
DroolsScoreDirector. |
SimpleScore |
fromLevelNumbers(int initScore,
Number[] levelNumbers)
The opposite of
Score.toLevelNumbers(). |
int |
getLevelsSize()
Returns the length of
Score.toLevelNumbers() for every Score of this definition. |
Class<SimpleScore> |
getScoreClass()
|
SimpleScore |
getZeroScore()
The score that represents zero.
|
SimpleScore |
parseScore(String scoreString)
|
formatScore, getInitLabel, getLevelLabels, toStringpublic int getLevelsSize()
ScoreDefinitionScore.toLevelNumbers() for every Score of this definition.
For example: returns 2 on HardSoftScoreDefinition.getLevelsSize in interface ScoreDefinition<SimpleScore>getLevelsSize in class AbstractScoreDefinition<SimpleScore>public Class<SimpleScore> getScoreClass()
ScoreDefinitionClass of the actual Score implementation.
For example: returns HardSoftScore.class on HardSoftScoreDefinition.public SimpleScore getZeroScore()
ScoreDefinitionpublic SimpleScore parseScore(String scoreString)
ScoreDefinitionscoreString - never nullScoreDefinition.formatScore(Score),
ScoreUtils.parseScore(Class, String)public SimpleScore fromLevelNumbers(int initScore, Number[] levelNumbers)
ScoreDefinitionScore.toLevelNumbers().initScore - <= 0, managed by OptaPlanner, needed as a parameter in the Score's creation
method, see Score.getInitScore()levelNumbers - never nullpublic SimpleScoreHolder buildScoreHolder(boolean constraintMatchEnabled)
ScoreDefinitionDroolsScoreDirector.constraintMatchEnabled - true if ScoreHolder.isConstraintMatchEnabled() should be truepublic SimpleScore buildOptimisticBound(InitializingScoreTrend initializingScoreTrend, SimpleScore score)
ScoreDefinitionScore which is equal or better than any other Score with more variables initialized
(while the already variables don't change).initializingScoreTrend - never null, with InitializingScoreTrend.getLevelsSize()
equal to ScoreDefinition.getLevelsSize().score - never null, with Score.getInitScore() 0.public SimpleScore buildPessimisticBound(InitializingScoreTrend initializingScoreTrend, SimpleScore score)
ScoreDefinitionScore which is equal or worse than any other Score with more variables initialized
(while the already variables don't change).initializingScoreTrend - never null, with InitializingScoreTrend.getLevelsSize()
equal to ScoreDefinition.getLevelsSize().score - never null, with Score.getInitScore() 0Copyright © 2006–2017 JBoss by Red Hat. All rights reserved.