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