com.aliyun.tair.taircpc.results.Update2JudWithKeyResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alibabacloud-tairjedis-sdk Show documentation
Show all versions of alibabacloud-tairjedis-sdk Show documentation
Aliyun Tair Redis client for Java
Copyright (C) Alibaba Cloud Computing
All rights reserved.
版权所有 (C)阿里云计算有限公司
http://www.aliyun.com
package com.aliyun.tair.taircpc.results;
public class Update2JudWithKeyResult {
private String key;
private double value;
private double diffValue;
public Update2JudWithKeyResult(String key, double value, double diffValue) {
this.key = key;
this.value = value;
this.diffValue = diffValue;
}
public String getKey() {
return key;
}
public void setKey(String key) {
this.key = key;
}
public double getValue() {
return value;
}
public void setValue(double value) {
this.value = value;
}
public double getDiffValue() {
return diffValue;
}
public void setDiffValue(double diffValue) {
this.diffValue = diffValue;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy