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

com.orbitz.consul.model.kv.Verb Maven / Gradle / Ivy

There is a newer version: 1.5.3
Show newest version
package com.orbitz.consul.model.kv;

public enum Verb {

    SET("set"), CHECK_AND_SET("cas"), LOCK("lock"), UNLOCK("unlock"), GET("get"),
    GET_TREE("get-tree"), CHECK_INDEX("check-index"), CHECK_SESSION("check-session"),
    DELETE("delete"), DELETE_TREE("delete-tree"), DELETE_CHECK_AND_SET("delete-cas");

    private String value;

    Verb(String value) {
        this.value = value;
    }

    public String toValue() {
        return value;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy