com.aliyun.oss.model.Aggregation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aliyun-sdk-oss-shade Show documentation
Show all versions of aliyun-sdk-oss-shade Show documentation
The Aliyun OSS SDK for Java used for accessing Aliyun Object Storage Service, includes all service and dependent JARs.
The newest version!
package com.aliyun.oss.model;
public class Aggregation {
private String field;
private String operation;
private double value;
private AggregationGroups groups;
public String getField() {
return field;
}
public void setField(String field) {
this.field = field;
}
public String getOperation() {
return operation;
}
public void setOperation(String operation) {
this.operation = operation;
}
public double getValue() {
return value;
}
public void setValue(double value) {
this.value = value;
}
public AggregationGroups getGroups() {
return groups;
}
public void setGroups(AggregationGroups groups) {
this.groups = groups;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy