
com.redislabs.redisai.Backend Maven / Gradle / Ivy
package com.redislabs.redisai;
import redis.clients.jedis.commands.ProtocolCommand;
import redis.clients.jedis.util.SafeEncoder;
public enum Backend implements ProtocolCommand {
TF, TORCH;
private final byte[] raw;
Backend() {
raw = SafeEncoder.encode(this.name());
}
public byte[] getRaw() {
return raw;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy