mirror of https://github.com/apache/lucene.git
fix HTML escaping in solrj javadocs
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1329049 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
37d9ff3d94
commit
6f0b19c7a7
|
@ -42,7 +42,7 @@ public class ModifiableSolrParams extends SolrParams
|
|||
vals = new LinkedHashMap<String, String[]>();
|
||||
}
|
||||
|
||||
/** Constructs a new ModifiableSolrParams directly using the provided Map<String,String[]> */
|
||||
/** Constructs a new ModifiableSolrParams directly using the provided Map<String,String[]> */
|
||||
public ModifiableSolrParams( Map<String,String[]> v )
|
||||
{
|
||||
vals = v;
|
||||
|
|
|
@ -267,7 +267,7 @@ public abstract class SolrParams implements Serializable {
|
|||
return new AppendedSolrParams(params,defaults);
|
||||
}
|
||||
|
||||
/** Create a Map<String,String> from a NamedList given no keys are repeated */
|
||||
/** Create a Map<String,String> from a NamedList given no keys are repeated */
|
||||
public static Map<String,String> toMap(NamedList params) {
|
||||
HashMap<String,String> map = new HashMap<String,String>();
|
||||
for (int i=0; i<params.size(); i++) {
|
||||
|
@ -276,7 +276,7 @@ public abstract class SolrParams implements Serializable {
|
|||
return map;
|
||||
}
|
||||
|
||||
/** Create a Map<String,String[]> from a NamedList */
|
||||
/** Create a Map<String,String[]> from a NamedList */
|
||||
public static Map<String,String[]> toMultiMap(NamedList params) {
|
||||
HashMap<String,String[]> map = new HashMap<String,String[]>();
|
||||
for (int i=0; i<params.size(); i++) {
|
||||
|
|
|
@ -64,7 +64,7 @@ public class NamedList<T> implements Cloneable, Serializable, Iterable<Map.Entry
|
|||
*
|
||||
* <p>
|
||||
* Modifying the contents of the Entry[] after calling this constructor may change
|
||||
* the NamedList (in future versions of Solr), but this is not garunteed and should
|
||||
* the NamedList (in future versions of Solr), but this is not guaranteed and should
|
||||
* not be relied upon. To modify the NamedList, refer to {@link #add(String, Object)}
|
||||
* or {@link #remove(String)}.
|
||||
* </p>
|
||||
|
@ -80,7 +80,7 @@ public class NamedList<T> implements Cloneable, Serializable, Iterable<Map.Entry
|
|||
* pairwise names/values.
|
||||
*
|
||||
* <p>
|
||||
* When using this constructor, runtime typesafety is only garunteed if the all
|
||||
* When using this constructor, runtime typesafety is only guaranteed if the all
|
||||
* even numbered elements of the input list are of type "T".
|
||||
* </p>
|
||||
*
|
||||
|
@ -271,9 +271,9 @@ public class NamedList<T> implements Cloneable, Serializable, Iterable<Map.Entry
|
|||
|
||||
/**
|
||||
*
|
||||
* Helper class implementing Map.Entry<String, T> to store the key-value
|
||||
* Helper class implementing Map.Entry<String, T> to store the key-value
|
||||
* relationship in NamedList (the keys of which are String-s)
|
||||
*
|
||||
*
|
||||
* @param <T>
|
||||
*/
|
||||
public static final class NamedListEntry<T> implements Map.Entry<String, T> {
|
||||
|
|
Loading…
Reference in New Issue