public enum CatSolveType extends java.lang.Enum<CatSolveType>
| Enum Constant and Description |
|---|
AutomaticCompleteSolveType |
AutomaticOptimizedSolveType |
ManualSolveType |
| Modifier and Type | Method and Description |
|---|---|
static CatSolveType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CatSolveType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CatSolveType ManualSolveType
public static final CatSolveType AutomaticOptimizedSolveType
public static final CatSolveType AutomaticCompleteSolveType
public static CatSolveType[] values()
for (CatSolveType c : CatSolveType.values()) System.out.println(c);
public static CatSolveType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null