Package | Description |
---|---|
de.lmu.ifi.dbs.elki.utilities.optionhandling.constraints |
Constraints allow to restrict possible values for parameters.
|
Modifier and Type | Field and Description |
---|---|
private IntervalConstraint.IntervalBoundary |
IntervalConstraint.highBoundary
Deprecated.
The interval boundary for the high constraint value.
|
private IntervalConstraint.IntervalBoundary |
IntervalConstraint.lowBoundary
Deprecated.
The interval boundary for the low constraint value.
|
Modifier and Type | Method and Description |
---|---|
static IntervalConstraint.IntervalBoundary |
IntervalConstraint.IntervalBoundary.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IntervalConstraint.IntervalBoundary[] |
IntervalConstraint.IntervalBoundary.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Constructor and Description |
---|
IntervalConstraint(double lowConstraintValue,
IntervalConstraint.IntervalBoundary lowBoundary,
double highConstraintValue,
IntervalConstraint.IntervalBoundary highBoundary)
Deprecated.
Creates an IntervalConstraint parameter constraint.
|
IntervalConstraint(int lowConstraintValue,
IntervalConstraint.IntervalBoundary lowBoundary,
int highConstraintValue,
IntervalConstraint.IntervalBoundary highBoundary)
Deprecated.
Creates an IntervalConstraint parameter constraint.
|
IntervalConstraint(Number lowConstraintValue,
IntervalConstraint.IntervalBoundary lowBoundary,
Number highConstraintValue,
IntervalConstraint.IntervalBoundary highBoundary)
Deprecated.
Creates an IntervalConstraint parameter constraint.
|