
com.aliyun.openservices.ots.model.GetRangeRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ots-public Show documentation
Show all versions of ots-public Show documentation
Aliyun Open Services SDK for Java Copyright (C) Alibaba Cloud Computing All rights reserved. 版权所有 (C)阿里云计算有限公司 http://www.aliyun.com
package com.aliyun.openservices.ots.model;
import static com.aliyun.openservices.ots.utils.CodingUtils.*;
public class GetRangeRequest {
/**
* 范围查询的条件。
*/
private RangeRowQueryCriteria rangeRowQueryCriteria;
public GetRangeRequest() {
}
public GetRangeRequest(RangeRowQueryCriteria rangeRowQueryCriteria) {
setRangeRowQueryCriteria(rangeRowQueryCriteria);
}
/**
* 获取范围查询的条件。
* @return 范围查询的条件。
*/
public RangeRowQueryCriteria getRangeRowQueryCriteria() {
return rangeRowQueryCriteria;
}
/**
* 设置范围查询的条件。
* @param rangeRowQueryCriteria 范围查询的条件。
*/
public void setRangeRowQueryCriteria(RangeRowQueryCriteria rangeRowQueryCriteria) {
assertParameterNotNull(rangeRowQueryCriteria, "rangeRowQueryCriteria");
this.rangeRowQueryCriteria = rangeRowQueryCriteria;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy