Package ninja.params
Class ParamParsers.PrimitiveIntegerParamParser
- java.lang.Object
-
- ninja.params.ParamParsers.PrimitiveIntegerParamParser
-
- All Implemented Interfaces:
ParamParser<Integer>
- Enclosing class:
- ParamParsers
public static class ParamParsers.PrimitiveIntegerParamParser extends Object implements ParamParser<Integer>
-
-
Constructor Summary
Constructors Constructor Description PrimitiveIntegerParamParser()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Class<Integer>
getParsedType()
Get the type that this parser parses toInteger
parseParameter(String field, String parameterValue, Validation validation)
Parse the given parameter value
-
-
-
Method Detail
-
parseParameter
public Integer parseParameter(String field, String parameterValue, Validation validation)
Description copied from interface:ParamParser
Parse the given parameter value- Specified by:
parseParameter
in interfaceParamParser<Integer>
- Parameters:
field
- The field that is being parsedparameterValue
- The value to parse. May be null.validation
- The validation context.- Returns:
- The parsed parameter value. May be null.
-
getParsedType
public Class<Integer> getParsedType()
Description copied from interface:ParamParser
Get the type that this parser parses to- Specified by:
getParsedType
in interfaceParamParser<Integer>
- Returns:
- The type
-
-