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

jaskell.sql.Quot Maven / Gradle / Ivy

Go to download

This is a utils library for java 8 project. It include parsec combinators and sql generators library.

There is a newer version: 2.9.2
Show newest version
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