jaskell.sql.Quot Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jaskell-java8 Show documentation
Show all versions of jaskell-java8 Show documentation
This is a utils library for java 8 project.
It include parsec combinators and sql generators library.
package jaskell.sql;
public class Quot extends Name {
private final String _left;
private final String _right;
public Quot(String name) {
super(name);
_left = "\"";
_right = "\"";
}
public Quot(String l, String name, String r){
super(name);
this._left = l;
this._right = r;
}
@Override
public String script() {
return String.format("%s%s%s", this._left, super.escaped(), this._right);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy