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

com.volcengine.service.vikingDB.common.VectorOrder Maven / Gradle / Ivy

There is a newer version: 1.0.192
Show newest version
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