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

org.tarantool.Code Maven / Gradle / Ivy

There is a newer version: 1.9.4
Show newest version
package org.tarantool;


public enum Code  {
    SELECT(1), INSERT(2), REPLACE(3), UPDATE(4),
    DELETE(5), OLD_CALL(6), AUTH(7), EVAL(8), UPSERT(9), CALL(10), EXECUTE(11) , PING(64), SUBSCRIBE(66),;

    int id;

    Code(int id) {
        this.id = id;
    }

    public int getId() {
        return id;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy