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

com.github.brunodutr.persistence.criteria.service.CriteriaProcessorNotIn Maven / Gradle / Ivy

There is a newer version: 2.0.2
Show newest version
package com.github.brunodutr.persistence.criteria.service;

import java.lang.reflect.Field;

import javax.persistence.criteria.CriteriaBuilder;
import javax.persistence.criteria.Predicate;
import javax.persistence.criteria.Root;

class CriteriaProcessorNotIn extends CriteriaProcessorIn {

	@Override
	public Predicate process(CriteriaBuilder criteriaBuilder, Root root, Object object, Field field) throws Exception {
		return super.process(criteriaBuilder, root, object, field).not();
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy