Package com.exasol.adapter.sql
Class SqlPredicateIsNotNull
- java.lang.Object
-
- com.exasol.adapter.sql.SqlNode
-
- com.exasol.adapter.sql.SqlPredicate
-
- com.exasol.adapter.sql.SqlPredicateIsNotNull
-
public class SqlPredicateIsNotNull extends SqlPredicate
The type Sql predicate is not null.
-
-
Constructor Summary
Constructors Constructor Description SqlPredicateIsNotNull(SqlNode expression)Instantiates a new Sql predicate is not null.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <R> Raccept(SqlNodeVisitor<R> visitor)SeeSqlNodeVisitorSqlNodegetExpression()Gets expression.SqlNodeTypegetType()Gets type.-
Methods inherited from class com.exasol.adapter.sql.SqlPredicate
getFunction
-
-
-
-
Constructor Detail
-
SqlPredicateIsNotNull
public SqlPredicateIsNotNull(SqlNode expression)
Instantiates a new Sql predicate is not null.- Parameters:
expression- the expression
-
-
Method Detail
-
getExpression
public SqlNode getExpression()
Gets expression.- Returns:
- the expression
-
getType
public SqlNodeType getType()
Description copied from class:SqlNodeGets type.
-
accept
public <R> R accept(SqlNodeVisitor<R> visitor) throws AdapterException
Description copied from class:SqlNodeSeeSqlNodeVisitor- Specified by:
acceptin classSqlNode- Type Parameters:
R- generic SqlNodeVisitor type- Parameters:
visitor- The visitor object on which the appropriate visit(sqlNode) method is called- Returns:
- visited object
- Throws:
AdapterException- can be thrown
-
-