LambdaJ is a library to manipulate a collections without any iterations.

learn more… | top users | synonyms

0
votes
1answer
9 views

Filtering collection on condition nested in another collection

Having this bean structure class User { private List<Permission> permissions; ... } class Permission { private Detail detail; ... } class Detail { private String name; ...
0
votes
1answer
34 views

lambdaj fails java.lang.ExceptionInInitializerError with any call on Android

I'm trying to use lambdaj on Android but with every simple call I make I get an exception (java.lang.ExceptionInInitializerError). The class that fills the collection is: @DatabaseTable(tableName = ...
1
vote
1answer
79 views

How to use lambdaJ's extract() on method returning generic type without explicit casting

I'm using generics to store reference to arbitrary object. class Option<TypeT>{ TypeT o; Option(TypeT t){ this.o = o; } TypeT getReferencedObject(){ return o; ...
1
vote
0answers
23 views

lambdaj ProxyUtil.createEnhancer exception

Imported lambdaj successfully in my android app, however any filter, select or group operation raises this: 04-05 16:46:42.555: E/AndroidRuntime(8482): java.lang.ExceptionInInitializerError 04-05 ...
0
votes
1answer
39 views

Lambdaj NoClassDefFoundError on android

I'm trying out lambdaj in my android app but even the simplest filtering operations fail with the exception listed. For example: Group<Person> groupedPersons= ...
0
votes
1answer
17 views

LambdaJ index() and key type conversion

I just started looking at LambdaJ, and immediately ran into a problem. I don't think I am doing anything weird, yet I can't figure out how to do this. I have a List of Administrators: ...
5
votes
1answer
127 views

Filtering collections with lambdaj

I have two classes like that: public class Order{ private Integer id; private List<Position> positions; ... } public class Position{ private Integer id; private String ...
9
votes
5answers
829 views

DTO pattern : Best way to copy properties between two Objects

In my application's architecture I usually send the Object or List of objects from the Data Access Layer to Web Layer via Service Layer, in which these objects get transformed from DAO Object to DTO ...
1
vote
1answer
100 views

Multiple sort conditions with lambdaj

How can I use multiple sort conditions with lambdaj? e.g. to obtain a List ordered first by name, then by age: Name Age nameA 14 nameB 12 nameB 15 nameC 10 nameC 11 Thanks for you help.
1
vote
2answers
158 views

lambdaJ and ClassCastException on simple select

I run out of ideas, Google also did not help. Use case seems to be trivial but it fails with ClassCastException. I don't know what I am doing wrong. There's a simple method to return first element ...
0
votes
0answers
128 views

Best Practice for Defining Collection Filters in a Spring Context File

Whats the best practice for defining filters to apply to a collection of objects within a spring context file? Say I have a Collection of Persons (Collection<Person> people). Each person has ...
0
votes
2answers
133 views

adding all results from running a method on elements in a collection to another collection

Is there a lambdaj way of doing this neatly? I know the title sounds complicated but the code fragment below should make it clear: private List<String[]> ...
1
vote
1answer
124 views

Comparing objects using hamcrest and lambdaj based on multiple inputs

I am trying to filter an array list to remove objects that do not match a set of criteria input by a user. The object has 3 lists. See below for example. public class A { public String [] a={"a", ...
4
votes
1answer
169 views

Extract object from nested array with lambdaj

I want to extract an object from a nested array with lambdaj. My model is a List of "Products" that own an arrays of "Elements": public class Product { Element[] elements; } public class Element { ...
10
votes
2answers
123 views

Application-wide configuration of Lambdaj FinalClassArgumentCreators. Where and how to do it?

We have a problem with configuring lambdaj to work with Joda Time. Since LocalDate is a final class, Lambdaj needs to be initialized like following: (see bug 70) public class LocalDateArgumentCreator ...
5
votes
2answers
297 views

Is there a Java library for defining predicates as SQL-like strings?

Lambdaj (and some other similar libraries) provides a having function which allows me to define predicates like so (example directly from the lambdaj Features page): List<Person> oldFriends = ...
2
votes
1answer
417 views

how to use lambdaj with hamcrest matcher (hasItemsInArray) for filtering a list

I'm trying to filter a list of caroffers Objects which are found in vendor array through lambdaj. But the below code doesn't work. I'm getting empty list. String[] vendor = {"FORD","TOYOTA"}; ...
0
votes
0answers
132 views

Lambdaj Error on Android

I am tryng to use lambdaj 2.4 with dependencies in my android application. However when I try to use following select statement: List<MOExpectedIncidentData> list = ...
0
votes
0answers
179 views

Is lambdaj's readability worth the performance penalty?

I'm working on a project that has a few modules that use lambdaj to filter collections and the code is very readable. I've never heard about it so I read the wiki to get a better understanding and ...
1
vote
1answer
237 views

Lambdaj: Loop through Map and get the values and put in other Map

I'm new to lambdaj so trying to get more used to it. I want to update this code using lambdaj: Passed in parameter Map<String, Device> devices; final Map<String, String> resultHash = ...
0
votes
2answers
120 views

LambdaJ: why can't we apply operation in select clause?

select(list, having(on(Integer.class).intValue() % 2, equalTo(0))); the code above throws exception.
1
vote
1answer
381 views

Sort a Map / EntrySet using Lambdaj

I'm wondering if its possible to sort an EntrySet< K, V > based on some property of K using lambdaj ? I dont think Lambdaj will let me I just wanted to confirm. For example if I have a Map< ...
1
vote
1answer
725 views

Employing Two Separate Filtering Criteria, using Lambdaj

Using Lambdaj, I am trying to isolate, from a list, an object that satisfies 2 seperate criteria. Both of the following will, I think, achieve my goal. A) List<SomeObject> ...
0
votes
1answer
246 views

Case Insensitive filtering with lambdaj

I'm attempting to familiarize myself with lambdaj, and am unsure how the best way to solve this problem. Given the following test: @Test public void test() { final List<String> l1 = new ...
2
votes
1answer
147 views

Use lambdaj library in android development

Is there any way to use the lambdaj library in android development ?
0
votes
1answer
1k views

Simple select method (lambdaj) gets Exception

I'm newbie to lambdaj. It seems that a great feature for Java programming. So I created a very simple program for evaluating. But I got a Exception for codes below. Could you help me what is wrong? ...
3
votes
3answers
721 views

Using lambdaj with String.matches method

How to filter a Collection<String> using lambdaj and the String.matches method. I'm new to lambdaj and feeling dumb since the examples given are more complicated than this.
0
votes
2answers
339 views

Using Lambdaj to Navigate Through Dom4j Elements

For anyone familiar with lambdaj (not I) you will have seen this stacktrace, or some variation, before: ch.lambdaj.function.argument.ArgumentConversionException: Unable to convert the ...
2
votes
1answer
202 views

Lambdaj class casting

i have some code like this: List<ClassB> back = new ArrayList<ClassB>(); for( ClassA classA : getClassAs() ) { if( classA instanceof ClassB ) { back.add((ClassB) classA); ...
2
votes
1answer
974 views

lambdaj and Multiple Sort Conditions in Java

I love lambdaj and use it a lot, but I can't seem to figure out if it is possible to sort a list using multiple sort conditions. Here is an example using Google Collections. Can the same thing be ...
2
votes
1answer
595 views

Simple extract with Lambdaj causes “Unable to convert placeholder null”

I have a simple pojo: class UserId { String ssn; String otsId; Integer actorId; public UserId(String ssn, String otsId, Integer actorId) { this.ssn = ssn; this.otsId = otsId; ...
0
votes
1answer
115 views

What is the lambdaj code for the following iteration

The following is the code which normally write to iterate and based on some condtion,i am adding to some other list.How can i write the same in the Lambdaj. Thanks in advance and your suggestion is ...
5
votes
2answers
172 views

Typesafe property name for a java bean

I'm looking for alternatives to get a property name in a type safe way. For example, using lambdaj, I can do: propertyName(on(Contract.class).getContractKey()) But this is a bit verbose and the ...
1
vote
1answer
159 views

LambdaJ Experts… how to randomize output

I have been trying to teach myself Lambdaj and it doesn't seem to want to randomize my string array. Should I add the strings to a List to be able to work with the collection with Lambdaj. All I ...
0
votes
1answer
607 views

Select top 3 items of a List using lambdaj

I want to select the top 3 items of a java List. I know how to sort the List (please see the code), but I don't know how to select the top 3 entries of this list having the highest values ([3.0, 5.5, ...
4
votes
3answers
1k views

Java: how to transform from List<T> to Map<f1(T), List(f2(T))> without iterating

I have a list of objects that I need to transform to a map where the keys are a function of each element, and the values are lists of another function of each element. Effectively this is grouping the ...
1
vote
1answer
449 views

how to filter a table use lambdaj or other tools

How can I filter a table using lambdaj? Given the following table: id name age male salary 1 tom 22 y 3k 2 nancy 24 n 3.5k 3 jack 22 y 2k 4 jmme 29 ...
1
vote
1answer
324 views

Lambdaj or apache predicate for filtering and modifying list item

I am working on a data loader, implemented using Spring Batch i.e. reading multiple flat files, processing and writing the list of pojo at commit interval of 1000 to database. Each line read from ...
2
votes
1answer
465 views

LambdaJ class property matcher

I am trying to write a Hamcrest matcher to verify the return value of a method that returns a Class object. For example, given the class: public static class ClassHolder { private final Class ...
7
votes
3answers
621 views

Type-safe flattening of nested collections/structures in Java

I would like to flatten arbitrary deeply nested collections/structures of elements of some type T in Java, optimally with only having a live view and not a copied collection; not only handling ...
2
votes
3answers
2k views

find key with highest value in HashMap<String,Double> using lambdaj (java)

I try to find the find key having the hightest value in a HashMap < String,Double > using lambdaj. I guess selectMax() will help, but I don't know how to use it in this case.
8
votes
1answer
1k views

Using lambdaj in android

Does anyone tried to use lambdaj library in android development? It works fine for me when I create a simple small java application, but I can't manage to use it in an android application. UPDATE: ...
2
votes
1answer
888 views

org.hamcrest.Matchers for matching different properties simultaneously of an Object

I am trying to match two different properties of an Object by org.hamcrest.Matchers. Here it is: List<LeaveApply> leaveApplyList = Lambda.select(allLeaveApplyList, ...
2
votes
1answer
626 views

How do i combine a list of lists using lambdaj?

I want to be able to combine sublists into a single list using lambdaj. I have an iterative version that works: // HDU elements are children of each subsystem Collection<SpaceSystemType> ...
8
votes
3answers
7k views

Lambda expressions of .NET in Java

I recently moved from C# to Java [again]. But I badly miss lambda expressions and things like IEnumerable.Foreach of C#. So I am looking for a lambda expression library in Java. are there better ...
1
vote
3answers
287 views

What's java equivalent to C#'s Single() operator?

You know, something equivalent to: <T> T single(List<T> list) { assertEquals(1, list.size()); return list.get(0); } Does lambdaj contain something like that?
0
votes
3answers
326 views

LINQ's Single in java?

Is there an equivalent to LINQ's Single in java? Perhaps in lambdaj?
2
votes
1answer
1k views

A practical introduction to lambdaj?

lambdaj seems like a nice project. What practical steps are needed to start using it? How do I integrate it with my Maven project?
2
votes
2answers
323 views

lambdaj installation

we have downloaded jar files for lambdaj and its dependencies which are again jar files. we do not know how to go about it. we have copied these files in the C:\Program Files\Java\jre6\lib\ext have ...
4
votes
2answers
2k views

Java mechanisms at use in lambdaj closures

Lamdbaj allows the definition of closures in the Java language, various examples can be found here My question is regarding the underlying Java mechanisms at use, for instance, to define the println ...

1 2