web-dev-qa-db-ja.com

プロパティでコレクション内の要素を見つける方法は?

アイテムのリストがあり、ブールプロパティ(フィールド変数)x=trueを持つアイテムのリストを検索したい。

これは反復によって達成できることは知っていますが、Apache Commonsのようなcommonsライブラリでそれを行うための一般的な方法を探していました。

12
Mahmoud Saleh

問題は、Javaでの反復は、多くの場合、はるかに単純でクリーンです。おそらくJava 8のクロージャでこれを修正します。;)

@Spaethのソリューションと比較してください。

List<String> mixedup = Arrays.asList("A", "0", "B", "C", "1", "D", "F", "3");
List<String> numbersOnlyList = new ArrayList<>();
for (String s : mixedup) {
    try {
        // here you could evaluate you property or field
        Integer.valueOf(s);
        numbersOnlyList.add(s);
    } catch (NumberFormatException ignored) {
    }
}
System.out.println("Results of the iterated List: " + numbersOnlyList);

ご覧のとおり、はるかに短くて簡潔です。

11
Peter Lawrey

プレディケートを実装するApacheコモンズコレクションを使用できます。

http://commons.Apache.org/collections/apidocs/org/Apache/commons/collections/CollectionUtils.html

サンプル:

package snippet;

import Java.util.Arrays;
import Java.util.Collection;

import org.Apache.commons.collections.CollectionUtils;
import org.Apache.commons.collections.Predicate;

public class TestCollection {

    public static class User {

        private String name;

        public User(String name) {
            super();
            this.name = name;
        }

        public String getName() {
            return name;
        }

        public void setName(String name) {
            this.name = name;
        }

        @Override
        public String toString() {
            return "User [name=" + name + "]";
        }

    }

    public static void main(String[] args) {
        Collection<User> users = Arrays.asList(new User("User Name 1"), new User("User Name 2"), new User("Another User"));
        Predicate predicate = new Predicate() {

            public boolean evaluate(Object object) {
                return ((User) object).getName().startsWith("User");
            }
        };
        Collection filtered = CollectionUtils.select(users, predicate);
        System.out.println(filtered);
    }
}

いくつかのサンプルはここにあります: http://apachecommonstipsandtricks.blogspot.de/2009/01/examples-of-functors-transformers.html

そして、特定のフィールドまたはプロパティの値を検査するなど、より一般的なものが必要な場合は、次のようにすることができます。

public static class MyPredicate implements Predicate {

    private Object expected;
    private String propertyName;

    public MyPredicate(String propertyName, Object expected) {
        super();
        this.propertyName = propertyName;
        this.expected = expected;
    }

    public boolean evaluate(Object object) {
        try {
            return expected.equals(PropertyUtils.getProperty(object, propertyName));
        } catch (Exception e) {
            return false;
        }
    }

}

これにより、特定のプロパティを期待値と比較でき、使用方法は次のようになります。

Collection filtered = CollectionUtils.select(users, new MyPredicate("name", "User Name 2"));
21
List<Foo> result = foos.stream()
  .filter(el -> el.x == true)
  .collect(Collectors.toList());

https://www.mkyong.com/Java8/Java-8-streams-filter-examples/

4
BARJ

Google guavafilter メソッドを使用してこれを行うことができます。 Commonsには filter メソッドもあります

4
Hari Menon

これをJavaで実現するには、hashCodeとequalsメソッドをオーバーライドします-

例えば

@Override
public int hashCode() {
    return eventId;
}

@Override
public boolean equals(Object obj) {
    if(obj instanceof CompanyTimelineView) {
        CompanyTimelineView new_name = (CompanyTimelineView) obj;
        if(new_name.eventId.intValue() == this.eventId.intValue()){
            return true;
        }
    }
    return false;
}

この例では、マッチしたeventId整数値があります。ここでクラスとそのプロパティを使用できます。この後、リストのcontains、indexOf、lastIndexOfおよびgetメソッドを使用して、リスト内の要素を検索できます。下記参照。

//tempObj is nothing but an empty object containing the essential properties
//tempObj should posses all the properties that are being compared in equals method.

if(listOfObj.contains(tempObj)){
    return listOfObj.get(listOfObj.indexOf(tempObj));
}
1
Pramod Kumar