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

net.sf.jsqlparser.util.cnfexpression.MultiAndExpression Maven / Gradle / Ivy

/*-
 * #%L
 * JSQLParser library
 * %%
 * Copyright (C) 2004 - 2019 JSQLParser
 * %%
 * Dual licensed under GNU LGPL 2.1 or Apache License 2.0
 * #L%
 */
package net.sf.jsqlparser.util.cnfexpression;

import java.util.List;

import net.sf.jsqlparser.expression.Expression;

/**
 * This helper class is mainly used for handling the CNF conversion.
 *
 * @author messfish
 *
 */
public final class MultiAndExpression extends MultipleExpression {

    public MultiAndExpression(List childlist) {
        super(childlist);
    }

    @Override
    public String getStringExpression() {
        return "AND";
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy