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

com.taosdata.jdbc.ws.stmt.entity.STMTAction Maven / Gradle / Ivy

There is a newer version: 3.4.0
Show newest version
package com.taosdata.jdbc.ws.stmt.entity;


import com.taosdata.jdbc.ws.entity.Response;

import java.util.HashMap;
import java.util.Map;

public enum STMTAction {
    CONN("conn", ConnResp.class),
    INIT("init", StmtResp.class),
    PREPARE("prepare", StmtResp.class),
    SET_TABLE_NAME("set_table_name", StmtResp.class),
    SET_TAGS("set_tags", StmtResp.class),
    BIND("bind", StmtResp.class),
    ADD_BATCH("add_batch", StmtResp.class),
    EXEC("exec", ExecResp.class),
    // response means nothing
    CLOSE("close", StmtResp.class),
    ;
    private final String action;
    private final Class clazz;

    STMTAction(String action, Class clazz) {
        this.action = action;
        this.clazz = clazz;
    }

    public String getAction() {
        return action;
    }

    public Class getClazz() {
        return clazz;
    }


    private static final Map actions = new HashMap<>();

    static {
        for (STMTAction value : STMTAction.values()) {
            actions.put(value.action, value);
        }
    }

    public static STMTAction of(String action) {
        if (null == action || action.equals("")) {
            return null;
        }
        return actions.get(action);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy