Querying Java Data Structures - Stack Overflow most recent 30 from stackoverflow.com2009-11-26T15:46:34Zhttp://stackoverflow.com/feeds/question/736573http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/736573/querying-java-data-structures2Querying Java Data StructuresGrasper2009-04-10T02:48:55Z2009-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#7365982Answer by tpdi for Querying Java Data Structurestpdi2009-04-10T03:03:43Z2009-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#7366023Answer by Steve B. for Querying Java Data StructuresSteve B.2009-04-10T03:05:15Z2009-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 <T> Collection<T> filter (Collection<T> c, Condition<T> condition) {
ArrayList<T> list = new ArrayList<T>():
for (T t: c){
if (condition.isSatisfied(t)) { list.add(t); }
}
return list;
}
public interface Condition<T> {
public boolean isSatisfied(T t);
}
</code></pre>
http://stackoverflow.com/questions/736573/querying-java-data-structures/736603#7366031Answer by raiglstorfer for Querying Java Data Structuresraiglstorfer2009-04-10T03:05:17Z2009-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#7366062Answer by Apocalisp for Querying Java Data StructuresApocalisp2009-04-10T03:08:17Z2009-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<String> myList = list("one", "two", "three").filter(
new F<String, Boolean>() {
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#7370935Answer by Chris May for Querying Java Data StructuresChris May2009-04-10T08:55:07Z2009-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<Integer> lowNumbers=
from("n").in(numbers).
where(lt("n",5).
select("n");
</code></pre>
http://stackoverflow.com/questions/736573/querying-java-data-structures/738876#7388760Answer by CaptainAwesomePants for Querying Java Data StructuresCaptainAwesomePants2009-04-10T21:08:54Z2009-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>