Interface IIndexedParameters

  • All Known Implementing Classes:
    PageParameters

    public interface IIndexedParameters
    Container for parameters that are identified by their index
    Author:
    igor
    • Method Detail

      • set

        IIndexedParameters set​(int index,
                               java.lang.Object object)
        Sets the indexed parameter on given index
        Parameters:
        index - The position of the parameter
        object - The parameter at this position
        Returns:
        this instance, for chaining
      • get

        org.apache.wicket.util.string.StringValue get​(int index)
        Parameters:
        index - The position of the parameter
        Returns:
        indexed parameter on given index
      • remove

        IIndexedParameters remove​(int index)
        Removes indexed parameter on given index
        Parameters:
        index - The position of the parameter
        Returns:
        this instance, for chaining
      • clearIndexed

        IIndexedParameters clearIndexed()
        Removes all indexed parameters.
        Returns:
        this instance, for chaining