
org.summerb.approaches.jdbccrud.impl.SimpleJdbcUpdate.Operator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of summerb Show documentation
Show all versions of summerb Show documentation
summerb - is a set of building blocks for real-world java-based web apps
package org.summerb.approaches.jdbccrud.impl.SimpleJdbcUpdate;
public enum Operator {
EQUALS("="), LESS_THAN("<"), GREATER_THAN(">");
private String op;
private Operator(final String op) {
this.op = op;
}
@Override
public String toString() {
return op;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy