All Downloads are FREE. Search and download functionalities are using the official Maven repository.

li.strolch.search.predicates.IsInPredicate Maven / Gradle / Ivy

The newest version!
package li.strolch.search.predicates;

import li.strolch.utils.ObjectHelper;

/**
 * Implements the isIn predicate, delegating to {@link ObjectHelper#isIn(Object, Object, boolean)}
 */
public class IsInPredicate extends AbstractSearchPredicate {
	private final boolean ignoreCase;

	public IsInPredicate(Object right, boolean ignoreCase) {
		super(right);
		this.ignoreCase = ignoreCase;
	}

	@Override
	public boolean matches(Object left) {
		return ObjectHelper.isIn(left, this.right, this.ignoreCase);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy