
com.redislabs.redistimeseries.Keyword Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jredistimeseries Show documentation
Show all versions of jredistimeseries Show documentation
Java Client for RedisTimeSeries.
package com.redislabs.redistimeseries;
import redis.clients.jedis.commands.ProtocolCommand;
import redis.clients.jedis.util.SafeEncoder;
public enum Keyword implements ProtocolCommand{
RESET,
FILTER,
AGGREGATION,
LABELS,
RETENTION,
TIMESTAMP,
WITHLABELS,
COUNT,
UNCOMPRESSED;
private final byte[] raw;
Keyword() {
raw = SafeEncoder.encode(this.name());
}
public byte[] getRaw() {
return raw;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy