Package org.tmatesoft.sqljet.core.schema
Interface ISqlJetCaseExpression
-
- All Superinterfaces:
ISqlJetExpression
- All Known Implementing Classes:
SqlJetCaseExpression
public interface ISqlJetCaseExpression extends ISqlJetExpression
Case expression.- Author:
- TMate Software Ltd., Dmitry Stadnik (dtrace@seznam.cz)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.List<ISqlJetExpression>
getConditions()
ISqlJetExpression
getDefaultValue()
ISqlJetExpression
getExpression()
java.util.List<ISqlJetExpression>
getValues()
-
Methods inherited from interface org.tmatesoft.sqljet.core.schema.ISqlJetExpression
getValue
-
-
-
-
Method Detail
-
getExpression
ISqlJetExpression getExpression()
-
getConditions
java.util.List<ISqlJetExpression> getConditions()
-
getValues
java.util.List<ISqlJetExpression> getValues()
-
getDefaultValue
ISqlJetExpression getDefaultValue()
-
-