Package guru.mikelue.jdut.function
Class DataRowBuilderPredicates
- java.lang.Object
-
- guru.mikelue.jdut.function.DataRowBuilderPredicates
-
public final class DataRowBuilderPredicates extends Object
Buildings forPredicate
ofDataRow.Builder
.
These labmda is used with
DataGrainDecorator.predicate(java.util.function.Predicate<guru.mikelue.jdut.datagrain.DataRow.Builder>)
.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Predicate<DataRow.Builder>
notExistingColumn(String tableName, String columnName)
BuildsPredicate
of a not-existing column on table.
-
-
-
Method Detail
-
notExistingColumn
public static Predicate<DataRow.Builder> notExistingColumn(String tableName, String columnName)
BuildsPredicate
of a not-existing column on table.- Parameters:
tableName
- The name of tablecolumnName
- the name of column- Returns:
- The predicate for row builder
-
-