DoubleParameter |
DoubleParameter.atLeast(double minValue) |
Validates that the parameter value is not too small.
|
DoubleParameter |
DoubleParameter.atMost(double maxValue) |
Validates that the parameter value is not too large.
|
DoubleParameter |
DoubleParameter.between(double minValue,
double maxValue) |
Validates that the parameter value is not too small or large.
|
DoubleParameter |
DoubleParameter.greaterThan(double minValue) |
Validates that the parameter value is not too small.
|
static DoubleParameter |
DoubleParameter.of(FilterConfig config,
String name) |
Returns a double init parameter for a filter.
|
static DoubleParameter |
DoubleParameter.of(ServletConfig config,
String name) |
Returns a double init parameter for a servlet.
|
static DoubleParameter |
DoubleParameter.of(ServletContext context,
String name) |
Returns a double init parameter for a servlet context.
|
static DoubleParameter |
DoubleParameter.of(ServletRequest request,
String name) |
Returns a double parameter for a servlet request.
|
DoubleParameter |
DoubleParameter.smallerThan(double maxValue) |
Validates that the parameter value is not too large.
|