| Methods in org.geotoolkit.parameter that return DefaultParameterDescriptor |
static DefaultParameterDescriptor<Double> |
DefaultParameterDescriptor.create(Map<String,?> properties,
double defaultValue,
double minimum,
double maximum,
Unit<?> unit,
boolean required)
Constructs a descriptor for a parameter in a range of floating point values. |
static DefaultParameterDescriptor<Integer> |
DefaultParameterDescriptor.create(Map<String,?> properties,
int defaultValue,
int minimum,
int maximum,
boolean required)
Constructs a descriptor for a parameter in a range of integer values. |
static DefaultParameterDescriptor<Double> |
DefaultParameterDescriptor.create(String name,
double defaultValue,
double minimum,
double maximum,
Unit<?> unit)
Constructs a descriptor for a mandatory parameter in a range of floating point values. |
static DefaultParameterDescriptor<Integer> |
DefaultParameterDescriptor.create(String name,
int defaultValue,
int minimum,
int maximum)
Constructs a descriptor for a mandatory parameter in a range of integer values. |