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

io.github.perplexhub.rsql.RSQLCustomPredicateInput Maven / Gradle / Ivy

There is a newer version: 6.0.23
Show newest version
package io.github.perplexhub.rsql;

import java.util.List;

import javax.persistence.criteria.CriteriaBuilder;
import javax.persistence.criteria.From;
import javax.persistence.criteria.Path;

import lombok.Value;

@Value(staticConstructor = "of")
public class RSQLCustomPredicateInput {

	private CriteriaBuilder criteriaBuilder;
	private Path path;
	private List arguments;
	private From root;

}