Package io.outofprintmagazine.util
Class Score
- java.lang.Object
-
- io.outofprintmagazine.util.Score
-
- All Implemented Interfaces:
Serializable
public class Score extends Object implements Serializable
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description Score()
Score(BigDecimal raw, BigDecimal normalized, BigDecimal count)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Score
add(Score score)
BigDecimal
getCount()
BigDecimal
getNormalized()
BigDecimal
getRaw()
void
setCount(BigDecimal count)
void
setNormalized(BigDecimal normalized)
void
setRaw(BigDecimal raw)
String
toJsonString()
-
-
-
Constructor Detail
-
Score
public Score()
-
Score
public Score(BigDecimal raw, BigDecimal normalized, BigDecimal count)
-
-
Method Detail
-
getRaw
public BigDecimal getRaw()
-
setRaw
public void setRaw(BigDecimal raw)
-
getNormalized
public BigDecimal getNormalized()
-
setNormalized
public void setNormalized(BigDecimal normalized)
-
getCount
public BigDecimal getCount()
-
setCount
public void setCount(BigDecimal count)
-
toJsonString
public String toJsonString()
-
-