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

io.weaviate.client.v1.graphql.model.ExploreFields Maven / Gradle / Ivy

There is a newer version: 4.9.0
Show newest version
package io.weaviate.client.v1.graphql.model;

public enum ExploreFields {
  CERTAINTY("certainty"),
  DISTANCE("distance"),
  BEACON("beacon"),
  CLASS_NAME("className");

  private final String field;

  ExploreFields(String field) {
    this.field = field;
  }

  @Override
  public String toString() {
    return field;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy