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

com.dooapp.gaedo.finders.expressions.CollectionContaingExpression Maven / Gradle / Ivy

package com.dooapp.gaedo.finders.expressions;

import com.dooapp.gaedo.finders.QueryExpression;
import com.dooapp.gaedo.properties.Property;

/**
 * Expression for a collection containing an expected object
 * @author ndx
 *
 */
public class CollectionContaingExpression extends AbstractBasicContainingExpression
		implements QueryExpression {

	public CollectionContaingExpression(Property fieldName, Iterable path, Object contained) {
		super(fieldName, path, contained);
	}

	@Override
	public void accept(QueryExpressionVisitor visitor) {
		visitor.visit(this);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy