Package jakarta.nosql

Interface Params


  • public interface Params
    A group of params to a dynamic query
    • Method Detail

      • isNotEmpty

        boolean isNotEmpty()
        Returns:
        if the params list is not empty
      • add

        Value add​(String param)
        Adds a new value at the params
        Parameters:
        param - the param
        Returns:
        the Value
      • getParametersNames

        List<String> getParametersNames()
        Returns:
        the parameters names at the params
      • bind

        void bind​(String name,
                  Object value)
        set the value from the class
        Parameters:
        name - the name
        value - the value
      • newParams

        static Params newParams()
        It returns a new Params instance
        Returns:
        a new Params instance