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

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

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

import lombok.Value;

@Value
public class IfCondition {
    private String expr;
    private MultiPart value;

    public IfCondition(String expr, MultiPart value) {
        this.expr = ParserUtils.trim(expr);
        this.value = value;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy