org.mentabean.sql.operations.Subtract Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of menta-bean Show documentation
Show all versions of menta-bean Show documentation
An query helper and simple CRUD ORM.
package org.mentabean.sql.operations;
public class Subtract extends Operation {
@Override
public String operationSignal() {
return "-";
}
}