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

redis.clients.jedis.graph.Record Maven / Gradle / Ivy

The newest version!
package redis.clients.jedis.graph;

import java.util.List;

/**
 * Container for RedisGraph result values.
 *
 * List records are returned from RedisGraph statement execution, contained within a ResultSet.
 *
 * @deprecated Redis Graph support is deprecated.
 */
@Deprecated
public interface Record {

  /**
   * The value at the given field index
   *
   * @param index field index
   *
   * @return the value
   */
   T getValue(int index);

  /**
   * The value at the given field
   *
   * @param key header key
   *
   * @return the value
   */
   T getValue(String key);

  /**
   * The value at the given field index (represented as String)
   *
   * @param index
   * @return string representation of the value
   */
  String getString(int index);

  /**
   * The value at the given field (represented as String)
   *
   * @param key header key
   *
   * @return string representation of the value
   */
  String getString(String key);

  /**
   * The keys of the record
   *
   * @return list of the record key
   */
  List keys();

  /**
   * The values of the record
   *
   * @return list of the record values
   */
  List values();

  /**
   * Check if the record header contains the given key
   *
   * @param key header key
   *
   * @return true if the key exists
   */
  boolean containsKey(String key);

  /**
   * The number of fields in this record
   *
   * @return the number of fields
   */
  int size();
}