Package edu.wisc.game.tools
Enum MwByHuman.PrecMode
- java.lang.Object
-
- java.lang.Enum<MwByHuman.PrecMode>
-
- edu.wisc.game.tools.MwByHuman.PrecMode
-
- All Implemented Interfaces:
Serializable
,Comparable<MwByHuman.PrecMode>
- Enclosing class:
- MwByHuman
public static enum MwByHuman.PrecMode extends Enum<MwByHuman.PrecMode>
Used to control how series are assigned to comparanda
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static MwByHuman.PrecMode
valueOf(String name)
Returns the enum constant of this type with the specified name.static MwByHuman.PrecMode[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Naive
public static final MwByHuman.PrecMode Naive
-
Every
public static final MwByHuman.PrecMode Every
-
EveryCond
public static final MwByHuman.PrecMode EveryCond
-
Ignore
public static final MwByHuman.PrecMode Ignore
-
-
Method Detail
-
values
public static MwByHuman.PrecMode[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (MwByHuman.PrecMode c : MwByHuman.PrecMode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MwByHuman.PrecMode valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-