Uses of Class
org.apache.commons.statistics.ranking.TiesStrategy
-
Packages that use TiesStrategy Package Description org.apache.commons.statistics.ranking Classes providing rank transformations. -
-
Uses of TiesStrategy in org.apache.commons.statistics.ranking
Fields in org.apache.commons.statistics.ranking declared as TiesStrategy Modifier and Type Field Description private static TiesStrategy
NaturalRanking. DEFAULT_TIES_STRATEGY
Default ties strategy.private TiesStrategy
NaturalRanking. tiesStrategy
Ties strategy.Methods in org.apache.commons.statistics.ranking that return TiesStrategy Modifier and Type Method Description TiesStrategy
NaturalRanking. getTiesStrategy()
Return theTiesStrategy
.static TiesStrategy
TiesStrategy. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static TiesStrategy[]
TiesStrategy. values()
Returns an array containing the constants of this enum type, in the order they are declared.Constructors in org.apache.commons.statistics.ranking with parameters of type TiesStrategy Constructor Description NaturalRanking(NaNStrategy nanStrategy, TiesStrategy tiesStrategy)
Creates an instance with the specified @nanStrategy
and the specified @tiesStrategy
.NaturalRanking(NaNStrategy nanStrategy, TiesStrategy tiesStrategy, java.util.function.IntUnaryOperator randomIntFunction)
NaturalRanking(TiesStrategy tiesStrategy)
Creates an instance withNaNStrategy.FAILED
and the specified @tiesStrategy
.
-