有没有更好的方法来编写这个(集合)Helper类

时间:2013-01-11 21:24:08

标签: java collections

我想知道是否有更好的方法来编写以下类

public class Helper
{
    public static boolean isMatch(final Collection<ClassA> customList)
    public static boolean containsProperty(final Collection<ClassA> customList, final String property)
}

调用方法的方式是:

Helper.isMatch(customList);

我想做的是打电话:

customList.isMatch();

任何建议都会很棒。

1 个答案:

答案 0 :(得分:1)

如果您使用Guava,您可以使用ForwardingList

它将所有默认List方法转发到嵌入式实例,您可以添加自己的方法。

更多详情here