up vote 91 down vote favorite
25
share [g+] share [fb]

What is Java equivalent for LINQ?

link|improve this question

2  
You do realize that LINQ is encumbered with patents don't you? [Some of LINQ Patents][1] [1]: faqs.org/patents/… – Coyote21 Jan 31 '11 at 18:08
1  
Those appear to be LINQ to SQL. – SLaks Feb 9 '11 at 16:06
1  
Check this one: github.com/nicholas22/jpropel-light, real example:new String[] { "james", "john", "john", "eddie" }.where(startsWith("j")).toList().distinct(); – NT_ Oct 8 '11 at 10:18
feedback

16 Answers

up vote 82 down vote accepted

There is nothing like LINQ for Java.

link|improve this answer
14  
Yet. (oh why 10 chars...) – 280Z28 Aug 1 '09 at 18:57
4  
is there something in the plan? integrated into the language? IS ther a JCP number? etc etc. – Cheeso Aug 1 '09 at 18:58
2  
Very true, although a big part of what makes LINQ sooo nice is how deeply it is integrated into the language and compiler – AgileJon Aug 1 '09 at 18:59
@AgileJon - I don't understand your answer. What's very true? I wasn't being rhetorical with any of my questions. – Cheeso Aug 1 '09 at 19:24
3  
Sorry, the 'very true' was meant for 280Z28. I don't know if there is a JCP for it. LINQ necessitated several changes to the C# language, given the speed the JCP works at I wouldn't hold my breath. – AgileJon Aug 1 '09 at 23:14
show 4 more comments
feedback

You can select the items in a collection (and much more) in a more readable way by using the lambdaj library

http://code.google.com/p/lambdaj/

It has some advantages over the Quaere library because it doesn't use any magic string, it is completely type safe and in my opinion it offers a more readable DSL.

link|improve this answer
nice find! I'm definitely going to play with this. – KitsuneYMG Jan 12 '11 at 3:57
1  
This is nice, but it is a far cry from being about to build a query and execute it again sql, xml, collection, etc. – bytebender Jun 8 '11 at 23:40
feedback

there is a project called quaere

its a java framework which adds abilitiy to query collections

link|improve this answer
2  
Quaere looks like it provides a bit of what LINQ provides, but the question is for an 'equivalent' – AgileJon Aug 1 '09 at 19:03
4  
So it's something like LINQ, if not a direct equivalent ? That at least sounds helpful – Brian Agnew Aug 1 '09 at 23:26
1  
@AgileJon: If he really meant equivalent, he wouldn't have asked. He could have typed from x in xs select x and found out the answer (no). – kizzx2 Jan 11 '11 at 15:04
feedback

I developed a alternate solution, Coollection. Is simple and focused on the most used actions of iteration over Collections.

Use like that:

  from(people).where("name", eq("Arthur")).first();
  from(people).where("age", lessThan(20)).all();
  from(people).where("name", not(contains("Francine"))).all();
link|improve this answer
17  
+1 for the product name! :) – Lukas Eder Dec 27 '10 at 21:09
feedback

You won't find an equivalent of LINQ unless you use the javacc to create your own equivalent.

Until that day when someone finds a viable way to do so, there are some good alternatives, such as

link|improve this answer
feedback

A more C#-like solution is JaQue. It has both: linq-to-object/xml functionality and a provider model with API very similar to MS LINQ. A simple JPA (Hibernate) provider is implemented. After Java will get closures, it will be elegant as well.

link|improve this answer
feedback

See SBQL4J. It's type-safe strong query language integrated with Java. Allows to write complicated and multiply nested queries. There is a lot of operators, Java methods can be invoked inside queries so as constructors. Queries are translated to pure Java code (there is no reflection at runtime) so execution is very fast.

EDIT: Well, so far SBQL4J it's the ONLY extension to Java language which gives query capabilities similar to LINQ. There are some interesting project like Quaere and JaQue but they are only API's, not syntax / semantics extension with strong type safety in compile time.

link|improve this answer
You may want to mention your role in the project. – Thorbjørn Ravn Andersen Oct 18 '11 at 19:07
feedback

There are many LINQ equivalents for Java, see here for a comparison.

For a typesafe Quaere/LINQ style framework, consider using Querydsl. Querydsl supports JPA/Hibernate, JDO, SQL and Java Collections.

I am the maintainer of Querydsl, so this answer is biased.

link|improve this answer
feedback

Lambdas are coming to Java 8 scheduled for 2012 in the form of JSR-335 - Lambda Expressions for the JavaTM Programming Language

I'm not fully aware of how much support will be added to the collections library, though one example provided does demonstrate a similar sortBy ability.

link|improve this answer
Good hint! (+1) – Nico Aug 12 '11 at 16:18
Weren't lambdas also scheduled to be in Java 7? What happened to that? – BlueRaja - Danny Pflughoeft Oct 11 '11 at 18:12
2  
Oracle bought Sun (tongue in cheek). Java 7 was taking far too long (5 years) so lambdas missed the short-list, this was rather disappointing to the masses. That being said Oracle does look like it's picking up the ball and I think we're scheduled for Java 8 October next year. – Brett Ryan Oct 11 '11 at 23:21
feedback

Just to add another alternative: Java 6 does have a solution for type-safe database queries using the javax.persistence.criteria package.

Though i must say that this is not really LINQ, because with LINQ you can query any IEnumerable.

link|improve this answer
Yup it's a JPA API. Far from LINQ, but better than nothing. And one can say it's based loosely on Hibernate Criteria API. See: docs.jboss.org/hibernate/core/3.6/reference/en-US/html/… – Hendy Irawan Dec 28 '10 at 2:47
feedback

There's a very good library that you can use for this.

Located here: https://github.com/nicholas22/jpropel-light

Lambdas won't be available until Java 8 though, so using it is a bit different and doesn't feel as natural.

link|improve this answer
feedback

you can use scala, it is similar in syntax and it's actually probably more powerful than linq.

link|improve this answer
Esp. Scala's "for comprehensions". – Nico Nov 20 '11 at 20:31
feedback

JaQu is the LINQ equivalent for Java. Although it was developed for the H2 database, it should work for any database since it uses JDBC.

link|improve this answer
feedback

There was the programming language Pizza (a Java extension) and you should have a look to it. - It uses the concept of "fluent interfaces" to query data in a declarative manner and that is in principle identical to LINQ w/o query expressions (http://en.wikipedia.org/wiki/Pizza_programming_language). But alas it was not pursued, but it would have been one way to get something similar to LINQ into Java.

link|improve this answer
feedback

Maybe not the answer you're hoping for, but if some part of you code need heavy work on collections (searching, sorting, filtering, transformations, analysis) you may take in consideration to write some classes in Clojure or Scala.

Because of their functional nature, working with collections is what they're best at. I don't have much experience with Scala, but with Clojure you'd probably find a more powerful Linq at your fingertips and once compiled, the classes you'd produce would integrate seamlessy with the rest of the code base.

link|improve this answer
Groovy or jRuby would also be viable candidates, since they all have a much more functional nature. – cdeszaq Dec 20 '11 at 14:38
feedback

Check this out https://code.google.com/p/tiny-q/

link|improve this answer
2  
Could you write a short description of it? – Pubby Nov 24 '11 at 23:49
Ooh look - a URL. I wonder what's at the other end of it. – Poldie Jan 12 at 10:39
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.