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

com.jn.sqlhelper.dialect.instrument.Instrumentation Maven / Gradle / Ivy

package com.jn.sqlhelper.dialect.instrument;

import com.jn.langx.annotation.Singleton;
import com.jn.langx.lifecycle.Initializable;
import com.jn.sqlhelper.dialect.instrument.groupby.GroupByTransformer;
import com.jn.sqlhelper.dialect.instrument.orderby.OrderByTransformer;
import com.jn.sqlhelper.dialect.instrument.where.WhereTransformer;
import com.jn.sqlhelper.dialect.sqlparser.SqlParser;
import com.jn.sqlhelper.dialect.sqlparser.SqlStatementWrapper;

@Singleton
public interface Instrumentation> extends Initializable {
    SqlParser getSqlParser();

    WhereTransformer getWhereTransformer();

    OrderByTransformer getOrderByTransformer();

    GroupByTransformer getGroupByTransformer();

    boolean isEnabled();

    void setEnabled(boolean enabled);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy