79808182838485
@Override public B isEquals(Column column) { if (column == null) { throw new IllegalArgumentException("column cannot be null"); } return applyFilter(new FilterItem(_selectItem, OperatorType.EQUALS_TO, new SelectItem(column))); }
87888990919293
@Override public B isEquals(Date date) { if (date == null) { throw new IllegalArgumentException("date cannot be null"); } return applyFilter(new FilterItem(_selectItem, OperatorType.EQUALS_TO, date)); }
9596979899100101
@Override public B isEquals(Number number) { if (number == null) { throw new IllegalArgumentException("number cannot be null"); } return applyFilter(new FilterItem(_selectItem, OperatorType.EQUALS_TO, number)); }
103104105106107108109
@Override public B isEquals(String string) { if (string == null) { throw new IllegalArgumentException("string cannot be null"); } return applyFilter(new FilterItem(_selectItem, OperatorType.EQUALS_TO, string)); }
111112113114115116117
@Override public B isEquals(Boolean bool) { if (bool == null) { throw new IllegalArgumentException("bool cannot be null"); } return applyFilter(new FilterItem(_selectItem, OperatorType.EQUALS_TO, bool)); }
139140141142143144145
@Override public B differentFrom(Column column) { if (column == null) { throw new IllegalArgumentException("column cannot be null"); } return applyFilter(new FilterItem(_selectItem, OperatorType.DIFFERENT_FROM, new SelectItem(column))); }
147148149150151152153
@Override public B differentFrom(Date date) { if (date == null) { throw new IllegalArgumentException("date cannot be null"); } return applyFilter(new FilterItem(_selectItem, OperatorType.DIFFERENT_FROM, date)); }
155156157158159160161
@Override public B differentFrom(Number number) { if (number == null) { throw new IllegalArgumentException("number cannot be null"); } return applyFilter(new FilterItem(_selectItem, OperatorType.DIFFERENT_FROM, number)); }
163164165166167168169
@Override public B differentFrom(String string) { if (string == null) { throw new IllegalArgumentException("string cannot be null"); } return applyFilter(new FilterItem(_selectItem, OperatorType.DIFFERENT_FROM, string)); }
171172173174175176177
@Override public B differentFrom(Boolean bool) { if (bool == null) { throw new IllegalArgumentException("bool cannot be null"); } return applyFilter(new FilterItem(_selectItem, OperatorType.DIFFERENT_FROM, bool)); }