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

com.aliyun.oss.model.Aggregation Maven / Gradle / Ivy

Go to download

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