io.weaviate.client.v1.backup.model.RestoreStatus Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of client Show documentation
Show all versions of client Show documentation
A java client for Weaviate Vector Search Engine
package io.weaviate.client.v1.backup.model;
public interface RestoreStatus {
String STARTED = "STARTED";
String TRANSFERRING = "TRANSFERRING";
String TRANSFERRED = "TRANSFERRED";
String SUCCESS = "SUCCESS";
String FAILED = "FAILED";
}