public class SolverTypeCollection extends java.lang.Object implements java.lang.Iterable<SolverType>
| Modifier and Type | Field and Description |
|---|---|
static SolverTypeCollection |
EMPTY_COLLECTION |
private int |
hashCode |
private int |
minUsableSolver |
private java.lang.String |
name |
private java.util.LinkedList<SolverType> |
types |
| Modifier | Constructor and Description |
|---|---|
private |
SolverTypeCollection() |
|
SolverTypeCollection(java.lang.String name,
int minUsableSolvers,
java.util.Collection<SolverType> types)
Instantiates a new solver type collection.
|
|
SolverTypeCollection(java.lang.String name,
int minUsableSolvers,
SolverType type,
SolverType... types) |
| Modifier and Type | Method and Description |
|---|---|
boolean |
equals(java.lang.Object o) |
java.util.LinkedList<SolverType> |
getTypes() |
int |
hashCode() |
boolean |
isUsable() |
java.util.Iterator<SolverType> |
iterator() |
java.lang.String |
name() |
java.lang.String |
toString() |
public static final SolverTypeCollection EMPTY_COLLECTION
private java.util.LinkedList<SolverType> types
private java.lang.String name
private int minUsableSolver
private int hashCode
public SolverTypeCollection(java.lang.String name,
int minUsableSolvers,
SolverType type,
SolverType... types)
type - at least on solver type must be passed.types - minUsableSolvers - specifies how many solvers at leas must be usable, so that
isUsable returns true.public SolverTypeCollection(java.lang.String name,
int minUsableSolvers,
java.util.Collection<SolverType> types)
name - the name of the solverminUsableSolvers - the min number of usable solverstypes - the types to addprivate SolverTypeCollection()
public boolean equals(java.lang.Object o)
equals in class java.lang.Objectpublic int hashCode()
hashCode in class java.lang.Objectpublic java.util.LinkedList<SolverType> getTypes()
public boolean isUsable()
public java.lang.String name()
public java.lang.String toString()
toString in class java.lang.Objectpublic java.util.Iterator<SolverType> iterator()
iterator in interface java.lang.Iterable<SolverType>