Java org.apache.commons.beanutils BeanPropertyValueEqualsPredicate fields, constructors, methods, implement or subclass

Example usage for Java org.apache.commons.beanutils BeanPropertyValueEqualsPredicate fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.commons.beanutils BeanPropertyValueEqualsPredicate.

The text is from its open source code.

Constructor

BeanPropertyValueEqualsPredicate(String propertyName, Object propertyValue)
Constructor which takes the name of the property, its expected value to be used in evaluation, and assumes ignoreNull to be false.
BeanPropertyValueEqualsPredicate(String propertyName, Object propertyValue, boolean ignoreNull)
Constructor which takes the name of the property, its expected value to be used in evaluation, and a boolean which determines whether null objects in the property path will genenerate an IllegalArgumentException or not.