Querying Java Data Structures - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T15:46:34Z http://stackoverflow.com/feeds/question/736573 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/736573/querying-java-data-structures 2 Querying Java Data Structures Grasper 2009-04-10T02:48:55Z 2009-04-11T02:56:29Z <p>Is there any way to perform SQL Like Queries or Filtering on Java Data Structures?</p> <p>I want to filter objects in an ArrayList and a HashMap by fields of the objects contained within.</p> http://stackoverflow.com/questions/736573/querying-java-data-structures/736598#736598 2 Answer by tpdi for Querying Java Data Structures tpdi 2009-04-10T03:03:43Z 2009-04-10T03:03:43Z <p>Yes and no.</p> <p>No, not with a SQL like syntax. </p> <p>Yes, with a filter functor. In particular, look at the Apache Commons Collections, CollectionsUtils.filter() function, which applies a Predicate object to a Collection.</p> <p>You write the Predicate, the Apache classes take care of the rest.</p> http://stackoverflow.com/questions/736573/querying-java-data-structures/736602#736602 3 Answer by Steve B. for Querying Java Data Structures Steve B. 2009-04-10T03:05:15Z 2009-04-10T03:10:17Z <p>There's not a standard SQL-like language, but the apache <a href="http://commons.apache.org/collections/api-release/" rel="nofollow">commons collections has </a> a <a href="http://commons.apache.org/collections/api-release/org/apache/commons/collections/CollectionUtils.html#filter%28java.util.Collection,%20org.apache.commons.collections.Predicate%29" rel="nofollow">filter</a> method that will do what you want. Not too hard to roll your own, </p> <pre><code>public &lt;T&gt; Collection&lt;T&gt; filter (Collection&lt;T&gt; c, Condition&lt;T&gt; condition) { ArrayList&lt;T&gt; list = new ArrayList&lt;T&gt;(): for (T t: c){ if (condition.isSatisfied(t)) { list.add(t); } } return list; } public interface Condition&lt;T&gt; { public boolean isSatisfied(T t); } </code></pre> http://stackoverflow.com/questions/736573/querying-java-data-structures/736603#736603 1 Answer by raiglstorfer for Querying Java Data Structures raiglstorfer 2009-04-10T03:05:17Z 2009-04-10T03:05:17Z <p>There are a number of solution for doing that that leverage XPath or XQuery. For starters take a look at <a href="http://jaxen.codehaus.org/" rel="nofollow">Jaxen</a>. </p> http://stackoverflow.com/questions/736573/querying-java-data-structures/736606#736606 2 Answer by Apocalisp for Querying Java Data Structures Apocalisp 2009-04-10T03:08:17Z 2009-04-11T01:56:16Z <p>The canonical way is to just iterate over the data structure and insert the objects you want into a new one. Unfortunately, Java has no list comprehensions or first-class functions. But we can simulate them using a library like <a href="http://functionaljava.org" rel="nofollow">Functional Java</a>:</p> <pre><code>import fj.F; import fj.data.List; import static fj.data.List.list; import static fj.pre.Show.listShow; import static fj.pre.Show.stringShow; List&lt;String&gt; myList = list("one", "two", "three").filter( new F&lt;String, Boolean&gt;() { public Boolean f(String s) { return s.contains("e"); } }); listShow(stringShow).print(myList); </code></pre> <p>That will print <code>["one", "three"]</code> to standard output.</p> http://stackoverflow.com/questions/736573/querying-java-data-structures/737093#737093 5 Answer by Chris May for Querying Java Data Structures Chris May 2009-04-10T08:55:07Z 2009-04-10T08:55:07Z <p>You might like <a href="http://quaere.codehaus.org/" rel="nofollow">Quaere</a>, which is a fairly rich query language for java object graphs:</p> <pre><code>Integer[] numbers={5, 4, 1, 3, 9, 8, 7, 2, 0}; Iterable&lt;Integer&gt; lowNumbers= from("n").in(numbers). where(lt("n",5). select("n"); </code></pre> http://stackoverflow.com/questions/736573/querying-java-data-structures/738876#738876 0 Answer by CaptainAwesomePants for Querying Java Data Structures CaptainAwesomePants 2009-04-10T21:08:54Z 2009-04-10T21:08:54Z <p>One rather extreme solution might be to use an ORM of some sort to map your Java objects into an actual SQL database, then use actual SQL or a SQL-like language like Hibernate's HQL to query your objects precisely how you'd like.</p> <p>Of course, I'd only seriously consider that if I were actually planning to persist the objects in the database anyway, since otherwise it's overkill.</p>