我想使用 lambdaJ 从列表中选择特定值,
List<someFriends> newFriends = select(firendsCollection,having(on(someFriends.class).getDescription(), Matchers.containsString(("michael"))));
我希望它选择像给定字符串一样的值,在这个例子中它工作正常,但只有当单词是“michael”时它才会识别“Michael”,有没有办法用 LambdaJ 做到这一点?