Class MaxResultsParameter
- java.lang.Object
-
- com.atlassian.confluence.macro.params.BaseParameter<Integer>
-
- com.atlassian.confluence.macro.params.MaxResultsParameter
-
public class MaxResultsParameter extends BaseParameter<Integer>
Parameter that resolves anInteger
as the maximum number of results to return to a query.- Since:
- 2.9
-
-
Field Summary
-
Fields inherited from class com.atlassian.confluence.macro.params.BaseParameter
shouldValidate
-
-
Constructor Summary
Constructors Constructor Description MaxResultsParameter()
MaxResultsParameter(String defaultValue)
MaxResultsParameter(List<String> names, String defaultValue)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected Integer
findObject(String paramValue, MacroExecutionContext ctx)
Responsible for converting a macro parameter string value to its proper object representation (say "1" to new Integer(1))-
Methods inherited from class com.atlassian.confluence.macro.params.BaseParameter
addParameterAlias, findValue, getDefaultValue, getParameter, getParameterValue, setDefaultValue, setParameterNames, setValidate
-
-
-
-
Method Detail
-
findObject
protected Integer findObject(String paramValue, MacroExecutionContext ctx) throws ParameterException
Description copied from class:BaseParameter
Responsible for converting a macro parameter string value to its proper object representation (say "1" to new Integer(1))- Specified by:
findObject
in classBaseParameter<Integer>
- Throws:
ParameterException
-
-