Enum Class FieldType

java.lang.Object
java.lang.Enum<FieldType>
io.quarkus.redis.datasource.search.FieldType
All Implemented Interfaces:
Serializable, Comparable<FieldType>, Constable

public enum FieldType extends Enum<FieldType>
  • Nested Class Summary

    Nested classes/interfaces inherited from class java.lang.Enum

    Enum.EnumDesc<E extends Enum<E>>
  • Enum Constant Summary

    Enum Constants
    Enum Constant
    Description
    GEO allows geographic range queries against the value in this attribute.
    NUMERIC allows numeric range queries against the value in this attribute.
    TAG allows exact-match queries, such as categories or primary keys, against the value in this attribute.
    TEXT allows full-text search queries against the value in this attribute.
    VECTOR allows vector similarity queries against the value in this attribute.
  • Method Summary

    Modifier and Type
    Method
    Description
    static FieldType
    Returns the enum constant of this class with the specified name.
    static FieldType[]
    Returns an array containing the constants of this enum class, in the order they are declared.

    Methods inherited from class java.lang.Object

    getClass, notify, notifyAll, wait, wait, wait
  • Enum Constant Details

    • TEXT

      public static final FieldType TEXT
      TEXT allows full-text search queries against the value in this attribute.
    • TAG

      public static final FieldType TAG
      TAG allows exact-match queries, such as categories or primary keys, against the value in this attribute.
    • GEO

      public static final FieldType GEO
      GEO allows geographic range queries against the value in this attribute. The value of the attribute must be a string containing a longitude (first) and latitude separated by a comma.
    • VECTOR

      public static final FieldType VECTOR
      VECTOR allows vector similarity queries against the value in this attribute.
    • NUMERIC

      public static final FieldType NUMERIC
      NUMERIC allows numeric range queries against the value in this attribute.
  • Method Details

    • values

      public static FieldType[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static FieldType valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null