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

org.n3r.eql.parser.IsBlankParser Maven / Gradle / Ivy

There is a newer version: 0.1.19
Show newest version
package org.n3r.eql.parser;

public class IsBlankParser extends IsEmptyParser {
    public IsBlankParser(String expr) {
        super(expr);
    }

    @Override
    public EqlPart createPart() {
        return new IsBlankPart(expr, multiPart, elsePart);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy