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

com.aliyun.tair.tairts.params.ExtsDataPoint Maven / Gradle / Ivy

Go to download

Aliyun Tair Redis client for Java Copyright (C) Alibaba Cloud Computing All rights reserved. 版权所有 (C)阿里云计算有限公司 http://www.aliyun.com

There is a newer version: 3.0.9
Show newest version
package com.aliyun.tair.tairts.params;

public class ExtsDataPoint {
    private T skey;
    private T ts;
    private double value;

    public ExtsDataPoint(T skey, T ts, double value) {
        this.skey = skey;
        this.ts = ts;
        this.value = value;
    }

    public T getSkey() {
        return skey;
    }

    public void setSkey(T skey) {
        this.skey = skey;
    }

    public T getTs() {
        return ts;
    }

    public void setTs(T ts) {
        this.ts = ts;
    }


    public double getValue() {
        return value;
    }

    public void setValue(double value) {
        this.value = value;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy