Interface IRequestParameters

    • Method Detail

      • getParameterNames

        Set<StringgetParameterNames()
        Returns immutable set of all available parameter names.
        Returns:
        list of parameter names
      • getParameterValue

        org.apache.wicket.util.string.StringValue getParameterValue​(String name)
        Returns single value for parameter with specified name. This method always returns non-null result even if the parameter does not exist.
        Parameters:
        name - parameter name
        Returns:
        StringValue wrapping the actual value
        See Also:
        StringValue.isNull()
      • getParameterValues

        List<org.apache.wicket.util.string.StringValue> getParameterValues​(String name)
        Returns list of values for parameter with specified name. If the parameter does not exist this method returns null
        Parameters:
        name - parameter name
        Returns:
        list of all values for given parameter or null if parameter does not exist