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

com.github.harbby.dsxparser.RboRule Maven / Gradle / Ivy

The newest version!
package com.github.harbby.dsxparser;

import com.github.harbby.dsxparser.tree.Expression;

/**
 * Rule-Based Optimizer
 */
public interface RboRule {

    Class bind();

    boolean isMatch(T expression);

    Expression optimize(T expression);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy