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

jaskell.sql.IsNotNull Maven / Gradle / Ivy

package jaskell.sql;

import jaskell.script.Directive;
import jaskell.script.Parameter;

import java.util.List;

public class IsNotNull extends Predicate {
    Directive _prefix;
    @Override
    public String script() {
        return String.format("%s IS NOT NULL", _prefix.script());
    }

    @Override
    public List> parameters() {
        return _prefix.parameters();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy