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

fun.langel.cql.node.Script Maven / Gradle / Ivy

The newest version!
package fun.langel.cql.node;

import fun.langel.cql.util.StringUtil;

/**
 * @author [email protected](GuHan)
 * @date 2022/12/12 22:46
 **/
public class Script implements Node {

    private final String raw;

    private Script(final String raw) {
        this.raw = StringUtil.stripQuote(raw);
    }

    public static Script of(final String script) {
        return new Script(script);
    }

    public String raw() {
        return this.raw;
    }

    @Override
    public String toString() {
        return this.raw;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy