Enum Class QdrantOpType

java.lang.Object
java.lang.Enum<QdrantOpType>
io.nosqlbench.adapter.qdrant.types.QdrantOpType
All Implemented Interfaces:
Serializable, Comparable<QdrantOpType>, Constable

public enum QdrantOpType extends Enum<QdrantOpType>
  • Enum Constant Details

    • create_collection

      public static final QdrantOpType create_collection
    • delete_collection

      public static final QdrantOpType delete_collection
    • create_payload_index

      public static final QdrantOpType create_payload_index
    • search_points

      public static final QdrantOpType search_points
    • upsert_points

      public static final QdrantOpType upsert_points
    • count_points

      public static final QdrantOpType count_points
    • list_collections

      public static final QdrantOpType list_collections
    • collection_info

      public static final QdrantOpType collection_info
    • collection_exists

      public static final QdrantOpType collection_exists
    • list_collection_aliases

      public static final QdrantOpType list_collection_aliases
    • list_snapshots

      public static final QdrantOpType list_snapshots
  • Method Details

    • values

      public static QdrantOpType[] 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 QdrantOpType 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