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

com.redislabs.redisgraph.Command Maven / Gradle / Ivy

There is a newer version: 2.6.0-rc3
Show newest version
package com.redislabs.redisgraph;
import redis.clients.jedis.util.SafeEncoder;
import redis.clients.jedis.commands.ProtocolCommand;

/**
 * 
 * 
 *
 */
public enum Command implements ProtocolCommand {
    QUERY("graph.QUERY"),
    DELETE("graph.DELETE");

    private final byte[] raw;

    Command(String alt) {
        raw = SafeEncoder.encode(alt);
    }

    public byte[] getRaw() {
        return raw;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy