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

com.dooapp.gaedo.finders.informers.MapContainingValueExpression Maven / Gradle / Ivy

package com.dooapp.gaedo.finders.informers;

import com.dooapp.gaedo.finders.QueryExpression;
import com.dooapp.gaedo.finders.expressions.AbstractBasicContainingExpression;
import com.dooapp.gaedo.finders.expressions.QueryExpressionVisitor;
import com.dooapp.gaedo.properties.Property;

public class MapContainingValueExpression extends
		AbstractBasicContainingExpression implements QueryExpression {

	public MapContainingValueExpression(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