Package org.tmatesoft.sqljet.core.schema
Interface ISqlJetMatchExpression
-
- All Superinterfaces:
ISqlJetExpression
- All Known Implementing Classes:
SqlJetMatchExpression
public interface ISqlJetMatchExpression extends ISqlJetExpression
"MATCH" expression.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
ISqlJetMatchExpression.Operation
"MATCH" expression's operation.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ISqlJetExpression
getEscapeExpression()
ISqlJetExpression
getExpression()
ISqlJetExpression
getMatchExpression()
ISqlJetMatchExpression.Operation
getOperation()
boolean
isNot()
-
Methods inherited from interface org.tmatesoft.sqljet.core.schema.ISqlJetExpression
getValue
-
-
-
-
Method Detail
-
getExpression
ISqlJetExpression getExpression()
-
getOperation
ISqlJetMatchExpression.Operation getOperation()
-
isNot
boolean isNot()
-
getMatchExpression
ISqlJetExpression getMatchExpression()
-
getEscapeExpression
ISqlJetExpression getEscapeExpression()
-
-