Package org.tmatesoft.sqljet.core.schema
Interface ISqlJetFunctionExpression
-
- All Superinterfaces:
ISqlJetExpression
- All Known Implementing Classes:
SqlJetFunctionExpression
public interface ISqlJetFunctionExpression extends ISqlJetExpression
Function expression.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
areDistinctArguments()
java.util.List<ISqlJetExpression>
getArguments()
java.lang.String
getName()
boolean
isAll()
-
Methods inherited from interface org.tmatesoft.sqljet.core.schema.ISqlJetExpression
getValue
-
-
-
-
Method Detail
-
getName
java.lang.String getName()
-
areDistinctArguments
boolean areDistinctArguments()
-
getArguments
java.util.List<ISqlJetExpression> getArguments()
-
isAll
boolean isAll()
-
-