![JAR search and dependency download from the Maven repository](/logo.png)
io.kowalski.jqb2jooq.RuleOperator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jqb2jooq Show documentation
Show all versions of jqb2jooq Show documentation
Bridges the gap between querybuilder.js.org and jooq.org with very little code.
package io.kowalski.jqb2jooq;
import lombok.Getter;
@Getter
enum RuleOperator {
EQUAL,
NOT_EQUAL,
LESS,
LESS_OR_EQUAL,
GREATER,
GREATER_OR_EQUAL,
IN,
NOT_IN,
CONTAINS,
NOT_CONTAINS,
BETWEEN,
NOT_BETWEEN,
IS_NULL,
IS_NOT_NULL,
IS_EMPTY,
IS_NOT_EMPTY
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy