Uses of Class
elki.utilities.optionhandling.ParameterException
-
Packages that use ParameterException Package Description elki.utilities.optionhandling Parameter handling and option descriptions.elki.utilities.optionhandling.constraints Constraints allow to restrict possible values for parameters.elki.utilities.optionhandling.parameterization Configuration managers.elki.utilities.optionhandling.parameters Classes for various typed parameters. -
-
Uses of ParameterException in elki.utilities.optionhandling
Subclasses of ParameterException in elki.utilities.optionhandling Modifier and Type Class Description classUnspecifiedParameterExceptionException when a required parameter was not given.classWrongParameterValueExceptionThrown by a Parameterizable object in case of wrong parameter format. -
Uses of ParameterException in elki.utilities.optionhandling.constraints
Methods in elki.utilities.optionhandling.constraints that throw ParameterException Modifier and Type Method Description voidGreaterConstraint. test(java.lang.Number t)Checks if the number value given by the number parameter is greater than the constraint value.voidGreaterEqualConstraint. test(java.lang.Number t)Checks if the number value given by the number parameter is greater equal than the constraint value.voidLessConstraint. test(java.lang.Number t)Checks if the number value given by the number parameter is less than the constraint value.voidLessEqualConstraint. test(java.lang.Number t)Checks if the number value given by the number parameter is less equal than the constraint value.voidListEachNumberConstraint. test(T t)voidListSizeConstraint. test(java.lang.Object t)Checks if the list parameter fulfills the size constraint.voidParameterConstraint. test(T t)Checks if the valuetof the parameter to be tested fulfills the parameter constraint. -
Uses of ParameterException in elki.utilities.optionhandling.parameterization
Fields in elki.utilities.optionhandling.parameterization with type parameters of type ParameterException Modifier and Type Field Description (package private) java.util.List<ParameterException>AbstractParameterization. errorsErrors(package private) java.util.List<ParameterException>UnParameterization. errorsErrorsMethods in elki.utilities.optionhandling.parameterization that return types with arguments of type ParameterException Modifier and Type Method Description java.util.Collection<ParameterException>AbstractParameterization. getErrors()java.util.Collection<ParameterException>MergedParameterization. getErrors()java.util.Collection<ParameterException>Parameterization. getErrors()Get the configuration errors thrown inParameterization.grab(elki.utilities.optionhandling.parameters.Parameter<?>)java.util.Collection<ParameterException>TrackParameters. getErrors()java.util.Collection<ParameterException>UnParameterization. getErrors()Methods in elki.utilities.optionhandling.parameterization with parameters of type ParameterException Modifier and Type Method Description voidAbstractParameterization. reportError(ParameterException e)voidChainedParameterization. reportError(ParameterException e)voidMergedParameterization. reportError(ParameterException e)voidParameterization. reportError(ParameterException e)Report a configuration error.voidTrackParameters. reportError(ParameterException e)voidUnParameterization. reportError(ParameterException e)Methods in elki.utilities.optionhandling.parameterization that throw ParameterException Modifier and Type Method Description booleanChainedParameterization. setValueForOption(Parameter<?> opt)booleanListParameterization. setValueForOption(Parameter<?> opt)booleanMergedParameterization. setValueForOption(Parameter<?> opt)booleanParameterization. setValueForOption(Parameter<?> opt)Assign a value for an option, but not using default values and throwing exceptions on error.booleanSerializedParameterization. setValueForOption(Parameter<?> opt)booleanTrackParameters. setValueForOption(Parameter<?> opt) -
Uses of ParameterException in elki.utilities.optionhandling.parameters
Methods in elki.utilities.optionhandling.parameters that throw ParameterException Modifier and Type Method Description booleanAbstractParameter. isValid(java.lang.Object obj)booleanParameter. isValid(java.lang.Object obj)Checks if the given argument is valid for this option.protected abstract TAbstractParameter. parseValue(java.lang.Object obj)Parse a given value into the destination type.protected java.util.List<java.lang.Class<? extends C>>ClassListParameter. parseValue(java.lang.Object obj)protected java.lang.Class<? extends C>ClassParameter. parseValue(java.lang.Object obj)protected java.util.List<double[]>DoubleArrayListParameter. parseValue(java.lang.Object obj)protected double[]DoubleListParameter. parseValue(java.lang.Object obj)protected EEnumParameter. parseValue(java.lang.Object obj)protected java.util.List<java.net.URI>FileListParameter. parseValue(java.lang.Object obj)protected java.net.URIFileParameter. parseValue(java.lang.Object obj)protected java.lang.BooleanFlag. parseValue(java.lang.Object obj)protected IntGeneratorIntGeneratorParameter. parseValue(java.lang.Object obj)protected int[]IntListParameter. parseValue(java.lang.Object obj)protected java.lang.IntegerIntParameter. parseValue(java.lang.Object obj)protected java.lang.LongLongParameter. parseValue(java.lang.Object obj)protected java.util.List<java.lang.Class<? extends C>>ObjectListParameter. parseValue(java.lang.Object obj)protected java.lang.Class<? extends C>ObjectParameter. parseValue(java.lang.Object obj)protected java.util.regex.PatternPatternParameter. parseValue(java.lang.Object obj)protected RandomFactoryRandomParameter. parseValue(java.lang.Object obj)protected java.lang.StringStringParameter. parseValue(java.lang.Object obj)voidAbstractParameter. setValue(java.lang.Object obj)voidObjectParameter. setValue(java.lang.Object obj)voidParameter. setValue(java.lang.Object obj)Sets the value of the option.voidRandomParameter. setValue(java.lang.Object obj)protected booleanAbstractParameter. validate(T obj)Validate a value after parsing (e.g., do constraint checks!)protected booleanClassListParameter. validate(java.util.List<java.lang.Class<? extends C>> obj)booleanClassParameter. validate(java.lang.Class<? extends C> obj)Checks if the given parameter value is valid for this ClassParameter.protected booleanFileListParameter. validate(java.util.List<java.net.URI> obj)protected booleanFileParameter. validate(java.net.URI obj)protected booleanFlag. validate(java.lang.Boolean obj)
-