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

com.vesoft.nebula.driver.graph.data.BaseDataObject Maven / Gradle / Ivy

The newest version!
package com.vesoft.nebula.driver.graph.data;

import java.io.Serializable;

public abstract class BaseDataObject implements Serializable {
    private String decodeType = "utf-8";

    public String getDecodeType() {
        return decodeType;
    }

    public BaseDataObject setDecodeType(String decodeType) {
        this.decodeType = decodeType;
        return this;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy