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

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

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,
  SELECTED_LABELS,
  COUNT,
  UNCOMPRESSED,
  CHUNK_SIZE,
  DUPLICATE_POLICY,
  ON_DUPLICATE,
  ALIGN,
  FILTER_BY_TS,
  FILTER_BY_VALUE,
  GROUPBY,
  REDUCE;

  private final byte[] raw;

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy