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

it.unibz.inf.ontop.generation.algebra.SQLFlattenExpression Maven / Gradle / Ivy

The newest version!
package it.unibz.inf.ontop.generation.algebra;

import it.unibz.inf.ontop.model.term.Variable;
import it.unibz.inf.ontop.model.type.DBTermType;

import java.util.Optional;

public interface SQLFlattenExpression extends SQLExpression {

    SQLExpression getSubExpression();

    Variable getFlattenedVar();

    DBTermType getFlattenedType();

    Variable getOutputVar();

    Optional getIndexVar();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy