Interface ColumnValuePredicate
-
- All Known Implementing Classes:
AbstractColumnValuePredicate
,Equality
,Identity
,Inclusion
,Inequality
,Inferiority
,Like
,StrictInferiority
,StrictSuperiority
,Superiority
public interface ColumnValuePredicate
A predicate the values of a givenDbTable
's column must satisfy. Such predicates are used to filter the rows in the database table's content.- Author:
- mmoquillon
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DbColumn
getColumn()
Gets the name of the column on which the predicate should be played.
-
-
-
Method Detail
-
getColumn
DbColumn getColumn()
Gets the name of the column on which the predicate should be played.- Returns:
- the name of a database table's column.
-
-