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

io.ebeaninternal.server.expression.SubQueryOp Maven / Gradle / Ivy

There is a newer version: 15.8.1
Show newest version
package io.ebeaninternal.server.expression;

enum SubQueryOp {
  EQ(" = "),
  NE(" <> "),
  GT(" > "),
  GE(" >= "),
  LT(" < "),
  LE(" <= "),
  IN(" in "),
  NOTIN(" not in ");
  final String expression;

  SubQueryOp(String expression) {
    this.expression = expression;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy