com.volcengine.service.vikingDB.common.SearchByTextParam 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 com.volcengine.service.vikingDB.VikingDBException;
import lombok.Data;
@Data
public class SearchByTextParam {
private Text text= null;
private Map filter = null;
private Integer limit = 10;
private List outputFields = null;
private Object partition = "default";
private Integer isBuild = 0;
private Double denseWeight = null;
public SearchByTextParam setText(Text text){
this.text = text;
return this;
}
public SearchByTextParam setFilter(Map filter){
this.filter = filter;
return this;
}
public SearchByTextParam setLimit(Integer limit){
this.limit = limit;
return this;
}
public SearchByTextParam setOutputFields(List outputFields){
this.outputFields = outputFields;
return this;
}
public SearchByTextParam setPartition(Object partition){
this.partition = partition;
return this;
}
public SearchByTextParam setDenseWeight(Double denseWeight){
this.denseWeight = denseWeight;
return this;
}
public SearchByTextParam build() throws Exception{
VikingDBException vikingDBException = new VikingDBException(1000030, null, "Params does not exist");
if(this.text == null){
throw vikingDBException.getErrorCodeException(1000030, null, "Vector does not exist");
} else {
this.isBuild = 1;
return this;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy