br.com.objectos.way.sql.SimpleSelectWhere10LocalDate Maven / Gradle / Ivy
package br.com.objectos.way.sql;
import br.com.objectos.way.db.Condition;
import br.com.objectos.way.db.LocalDateTypeColumn;
import br.com.objectos.way.db.Selectable;
import javax.annotation.Generated;
@Generated("br.com.objectos.way.sql.BootProcessor")
public final class SimpleSelectWhere10LocalDate extends AbstractSimpleSelectWhere10 implements SimpleSelectWhereLocalDate, V> {
final Keyword keyword;
private final V first;
SimpleSelectWhere10LocalDate(SelectNode> previous, Keyword keyword, V first) {
super(previous);
this.keyword = keyword;
this.first = first;
}
@Override
Condition condition() {
return DateComparison.EQ.ofColumn(first);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy