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

com.redislabs.redisai.Keyword Maven / Gradle / Ivy

There is a newer version: 1.2.0
Show newest version
package com.redislabs.redisai;

import redis.clients.jedis.commands.ProtocolCommand;
import redis.clients.jedis.util.SafeEncoder;

public enum Keyword implements ProtocolCommand{

    TENSOR, VALUES, INPUTS, OUTPUTS;
    
    private final byte[] raw;

    Keyword() {
        raw = SafeEncoder.encode(this.name());
    }

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy