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

prerna.query.querystruct.InGenExpression Maven / Gradle / Ivy

The newest version!
package prerna.query.querystruct;

import java.util.ArrayList;
import java.util.List;

public class InGenExpression extends GenExpression {
	
	// false = in
	// true = not in
	private boolean isNot = false;
	
	// sets the condition
	public List  inList = new ArrayList();
	
	public void setIsNot(boolean negate) {
		this.isNot = negate;
	}
	
	public boolean isNot() {
		return this.isNot;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy