public enum TiesStrategy extends Enum<TiesStrategy>
| Enum Constant and Description | 
|---|
| AVERAGETies get the average of applicable ranks | 
| MAXIMUMTies get the maximum applicable rank | 
| MINIMUMTies get the minimum applicable rank | 
| RANDOMTies get a random integral value from among applicable ranks | 
| SEQUENTIALTies assigned sequential ranks in order of occurrence | 
| Modifier and Type | Method and Description | 
|---|---|
| static TiesStrategy | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static TiesStrategy[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final TiesStrategy SEQUENTIAL
public static final TiesStrategy MINIMUM
public static final TiesStrategy MAXIMUM
public static final TiesStrategy AVERAGE
public static final TiesStrategy RANDOM
public static TiesStrategy[] values()
for (TiesStrategy c : TiesStrategy.values()) System.out.println(c);
public static TiesStrategy valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2016–2020 Hipparchus.org. All rights reserved.