You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@lucene.apache.org by "Tapan Vaishnav (JIRA)" <ji...@apache.org> on 2018/03/09 09:22:00 UTC

[jira] [Issue Comment Deleted] (SOLR-11913) SolrParams ought to implement Iterable>

     [ https://issues.apache.org/jira/browse/SOLR-11913?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Tapan Vaishnav updated SOLR-11913:
----------------------------------
    Comment: was deleted

(was: [~dsmiley] Thanks for your quick reply. 
I think this should work. Iterable can just produce the iterator which we can iterate over to. And for the value of each [key: value] pair of _Map.Entry_ , we can use the _getParams_ internally by passing the _Map.Entry_ object(which would be nothing but the _iterator.next_) into the _getValue_ function of _ModifiableSolrParams_ class.
{noformat}
public Iterator<Map.Entry<String, String[]>> Iterable(){
        Set set = vals.entrySet();
        return set.iterator();
}

public String[] getValue(Map.Entry<String, String[]> map){
        if (map!=null) {
            return getParams(map.getKey());
        }
        return null;
}
{noformat})

> SolrParams ought to implement Iterable<Map.Entry<String,String[]>>
> ------------------------------------------------------------------
>
>                 Key: SOLR-11913
>                 URL: https://issues.apache.org/jira/browse/SOLR-11913
>             Project: Solr
>          Issue Type: Improvement
>      Security Level: Public(Default Security Level. Issues are Public) 
>            Reporter: David Smiley
>            Priority: Minor
>              Labels: newdev
>
> SolrJ ought to implement {{Iterable<Map.Entry<String,String[]>>}} so that it's easier to iterate on it, either using Java 5 for-each style, or Java 8 streams.  The implementation on ModifiableSolrParams can delegate through to the underlying LinkedHashMap entry set.  The default impl can produce a Map.Entry with a getValue that calls through to getParams.  



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@lucene.apache.org
For additional commands, e-mail: dev-help@lucene.apache.org