Interface ParametersProvider

    • Method Detail

      • get

        @Nullable
        String get​(@NotNull
                   String key)
        Parameters:
        key - the name of the parameter
        Returns:
        the value associated with a key, or null if the parameter with the key cannot be found.
      • size

        int size()
        Returns the number of parameters in this parameters provider. This is the size of the map returned by getAll method.
      • getAll

        Map<String,​String> getAll()
        Allows to get map of the provided parameters. Note that get method can provide more parameters then are returned by this method. However, all the parameters returned by this method should also be available via get method.
        Returns:
        copy of the backed data