All Downloads are FREE. Search and download functionalities are using the official Maven repository.

br.com.objectos.way.sql.SimpleSelectWhere7LocalDate Maven / Gradle / Ivy

There is a newer version: 0.4.1
Show newest version
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 SimpleSelectWhere7LocalDate extends AbstractSimpleSelectWhere7 implements SimpleSelectWhereLocalDate, V> {
  final Keyword keyword;

  private final V first;

  SimpleSelectWhere7LocalDate(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