public enum CatAlgorithmType extends java.lang.Enum<CatAlgorithmType>
Enum Constant and Description |
---|
catCAAalgorithm |
catGradient |
catSimulatedAnnealing |
Modifier and Type | Method and Description |
---|---|
static CatAlgorithmType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CatAlgorithmType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CatAlgorithmType catSimulatedAnnealing
public static final CatAlgorithmType catGradient
public static final CatAlgorithmType catCAAalgorithm
public static CatAlgorithmType[] values()
for (CatAlgorithmType c : CatAlgorithmType.values()) System.out.println(c);
public static CatAlgorithmType 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