What’s your favourite Class name?
Mine is BeanPropertyValueEqualsPredicate – Funny name with a noble function (helped me filter a bean list, knowing the value of one of its properties).
{% highlight java %} BeanPropertyValueEqualsPredicate bpvep = new BeanPropertyValueEqualsPredicate(”myProperty”, “someValue”);
CollectionUtils.find(beanList, bpvep); {% endhighlight %}