com.volcengine.service.vikingDB.common.VectorOrder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of volc-sdk-java Show documentation
Show all versions of volc-sdk-java Show documentation
The VOLC Engine SDK for Java
package com.volcengine.service.vikingDB.common;
import java.util.List;
import java.util.Map;
import lombok.Data;
@Data
public class VectorOrder {
private Object id = null;
private List vector = null;
private Map sparseVectors = null;
public VectorOrder setId(Object id) {
this.id = id;
return this;
}
public VectorOrder setVector(List vector) {
this.vector = vector;
return this;
}
public VectorOrder setSparseVectors(Map sparseVectors) {
this.sparseVectors = sparseVectors;
return this;
}
public VectorOrder build(){
return this;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy