Package org.chocosolver.solver.search
Enum SearchState
- java.lang.Object
-
- java.lang.Enum<SearchState>
-
- org.chocosolver.solver.search.SearchState
-
- All Implemented Interfaces:
Serializable
,Comparable<SearchState>
public enum SearchState extends Enum<SearchState> implements Serializable
Indication about the search statusProject: choco-solver.
- Since:
- 04/05/2016.
- Author:
- Charles Prud'homme
-
-
Enum Constant Summary
Enum Constants Enum Constant Description KILLED
A search that is killed from the outside (eg, thread interruption, JVM killed)is in this state.NEW
A search that has not yet started is in this state.RUNNING
A launched search is in this state.STOPPED
A search that ends on a stop criterion is in this state.TERMINATED
A search that ends normally is in this state.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SearchState
valueOf(String name)
Returns the enum constant of this type with the specified name.static SearchState[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NEW
public static final SearchState NEW
A search that has not yet started is in this state.
-
RUNNING
public static final SearchState RUNNING
A launched search is in this state.
-
TERMINATED
public static final SearchState TERMINATED
A search that ends normally is in this state.
-
STOPPED
public static final SearchState STOPPED
A search that ends on a stop criterion is in this state.
-
KILLED
public static final SearchState KILLED
A search that is killed from the outside (eg, thread interruption, JVM killed)is in this state.
-
-
Method Detail
-
values
public static SearchState[] 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 (SearchState c : SearchState.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SearchState 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
-
-