Uses of Interface
elki.utilities.optionhandling.constraints.ParameterConstraint
-
Packages that use ParameterConstraint Package Description elki.utilities.optionhandling.constraints Constraints allow to restrict possible values for parameters.elki.utilities.optionhandling.parameters Classes for various typed parameters. -
-
Uses of ParameterConstraint in elki.utilities.optionhandling.constraints
Classes in elki.utilities.optionhandling.constraints that implement ParameterConstraint Modifier and Type Class Description classAbstractNumberConstraintAbstract super class for constraints dealing with a certain number value.classGreaterConstraintRepresents a parameter constraint for testing if the value of the number parameter (NumberParameter) tested is greater than the specified constraint value.classGreaterEqualConstraintRepresents a Greater-Equal-Than-Number parameter constraint.classLessConstraintRepresents a Less-Than-Number parameter constraint.classLessEqualConstraintRepresents a Less-Equal-Than-Number parameter constraint.classListEachNumberConstraint<T>Applies numeric constraints to all elements of a list.classListSizeConstraintRepresents a list-size parameter constraint.Fields in elki.utilities.optionhandling.constraints declared as ParameterConstraint Modifier and Type Field Description static ParameterConstraint<double[]>CommonConstraints. GREATER_EQUAL_ONE_DOUBLE_LISTList constraint: >= 1static ParameterConstraint<int[]>CommonConstraints. GREATER_EQUAL_ONE_INT_LISTList constraint: >= 1static ParameterConstraint<double[]>CommonConstraints. GREATER_EQUAL_ZERO_DOUBLE_LISTConstraint for the whole list.static ParameterConstraint<int[]>CommonConstraints. GREATER_EQUAL_ZERO_INT_LISTConstraint for the whole list.static ParameterConstraint<double[]>CommonConstraints. GREATER_THAN_ONE_DOUBLE_LISTList constraint: > 1static ParameterConstraint<int[]>CommonConstraints. GREATER_THAN_ONE_INT_LISTList constraint: > 1 -
Uses of ParameterConstraint in elki.utilities.optionhandling.parameters
Fields in elki.utilities.optionhandling.parameters with type parameters of type ParameterConstraint Modifier and Type Field Description protected java.util.List<ParameterConstraint<? super T>>AbstractParameter. constraintsHolds parameter constraints for this parameter.Methods in elki.utilities.optionhandling.parameters that return types with arguments of type ParameterConstraint Modifier and Type Method Description java.util.List<ParameterConstraint<? super T>>AbstractParameter. getConstraints()java.util.List<ParameterConstraint<? super T>>Parameter. getConstraints()Get the parameter constraints.Methods in elki.utilities.optionhandling.parameters with parameters of type ParameterConstraint Modifier and Type Method Description PAbstractParameter. addConstraint(ParameterConstraint<? super T> constraint)Parameter<T>Parameter. addConstraint(ParameterConstraint<? super T> constraint)Add an additional constraint.Constructors in elki.utilities.optionhandling.parameters with parameters of type ParameterConstraint Constructor Description DoubleArrayListParameter(OptionID optionID, ParameterConstraint<java.util.List<double[]>> constraint)Constructs a vector list parameter with the given name and description.DoubleArrayListParameter(OptionID optionID, ParameterConstraint<java.util.List<double[]>> constraint, java.util.List<double[]> defaultValue)Constructs a vector list parameter with the given name and description.
-