Java org.apache.solr.common.params ModifiableSolrParams fields, constructors, methods, implement or subclass

Example usage for Java org.apache.solr.common.params ModifiableSolrParams fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.solr.common.params ModifiableSolrParams.

The text is from its open source code.

Subclass

org.apache.solr.common.params.ModifiableSolrParams has subclasses.
Click this link to see all its subclasses.

Constructor

ModifiableSolrParams(Map v)
Constructs a new ModifiableSolrParams directly using the provided Map<String,String[]>
ModifiableSolrParams(SolrParams params)
Constructs a new ModifiableSolrParams, copying values from an existing SolrParams
ModifiableSolrParams()

Method

ModifiableSolrParamsadd(String name, String... val)
Add the given values to any existing name
voidadd(SolrParams params)
Add all of the params provided in the parameter to this params.
voidclear()
clear all parameters
Stringget(String param)
MapgetMap()
SetgetParameterNames()
IteratorgetParameterNamesIterator()
String[]getParams(String param)
String[]remove(String name)
remove a field at the given name
ModifiableSolrParamsset(String name, String... val)
Replace any existing parameter with the given name.
ModifiableSolrParamsset(String name, int val)
ModifiableSolrParamsset(String name, boolean val)
intsize()