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

com.amazonaws.services.cloudwatch.model.StatisticSet Maven / Gradle / Ivy

Go to download

The AWS Java SDK for Amazon CloudWatch module holds the client classes that are used for communicating with Amazon CloudWatch Service

There is a newer version: 1.12.778
Show newest version
/*
 * Copyright 2019-2024 Amazon.com, Inc. or its affiliates. All Rights Reserved.
 * 
 * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with
 * the License. A copy of the License is located at
 * 
 * http://aws.amazon.com/apache2.0
 * 
 * or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
 * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions
 * and limitations under the License.
 */
package com.amazonaws.services.cloudwatch.model;

import java.io.Serializable;
import javax.annotation.Generated;

/**
 * 

* Represents a set of statistics that describes a specific metric. *

* * @see AWS API * Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class StatisticSet implements Serializable, Cloneable { /** *

* The number of samples used for the statistic set. *

*/ private Double sampleCount; /** *

* The sum of values for the sample set. *

*/ private Double sum; /** *

* The minimum value of the sample set. *

*/ private Double minimum; /** *

* The maximum value of the sample set. *

*/ private Double maximum; /** *

* The number of samples used for the statistic set. *

* * @param sampleCount * The number of samples used for the statistic set. */ public void setSampleCount(Double sampleCount) { this.sampleCount = sampleCount; } /** *

* The number of samples used for the statistic set. *

* * @return The number of samples used for the statistic set. */ public Double getSampleCount() { return this.sampleCount; } /** *

* The number of samples used for the statistic set. *

* * @param sampleCount * The number of samples used for the statistic set. * @return Returns a reference to this object so that method calls can be chained together. */ public StatisticSet withSampleCount(Double sampleCount) { setSampleCount(sampleCount); return this; } /** *

* The sum of values for the sample set. *

* * @param sum * The sum of values for the sample set. */ public void setSum(Double sum) { this.sum = sum; } /** *

* The sum of values for the sample set. *

* * @return The sum of values for the sample set. */ public Double getSum() { return this.sum; } /** *

* The sum of values for the sample set. *

* * @param sum * The sum of values for the sample set. * @return Returns a reference to this object so that method calls can be chained together. */ public StatisticSet withSum(Double sum) { setSum(sum); return this; } /** *

* The minimum value of the sample set. *

* * @param minimum * The minimum value of the sample set. */ public void setMinimum(Double minimum) { this.minimum = minimum; } /** *

* The minimum value of the sample set. *

* * @return The minimum value of the sample set. */ public Double getMinimum() { return this.minimum; } /** *

* The minimum value of the sample set. *

* * @param minimum * The minimum value of the sample set. * @return Returns a reference to this object so that method calls can be chained together. */ public StatisticSet withMinimum(Double minimum) { setMinimum(minimum); return this; } /** *

* The maximum value of the sample set. *

* * @param maximum * The maximum value of the sample set. */ public void setMaximum(Double maximum) { this.maximum = maximum; } /** *

* The maximum value of the sample set. *

* * @return The maximum value of the sample set. */ public Double getMaximum() { return this.maximum; } /** *

* The maximum value of the sample set. *

* * @param maximum * The maximum value of the sample set. * @return Returns a reference to this object so that method calls can be chained together. */ public StatisticSet withMaximum(Double maximum) { setMaximum(maximum); return this; } /** * Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be * redacted from this string using a placeholder value. * * @return A string representation of this object. * * @see java.lang.Object#toString() */ @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("{"); if (getSampleCount() != null) sb.append("SampleCount: ").append(getSampleCount()).append(","); if (getSum() != null) sb.append("Sum: ").append(getSum()).append(","); if (getMinimum() != null) sb.append("Minimum: ").append(getMinimum()).append(","); if (getMaximum() != null) sb.append("Maximum: ").append(getMaximum()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof StatisticSet == false) return false; StatisticSet other = (StatisticSet) obj; if (other.getSampleCount() == null ^ this.getSampleCount() == null) return false; if (other.getSampleCount() != null && other.getSampleCount().equals(this.getSampleCount()) == false) return false; if (other.getSum() == null ^ this.getSum() == null) return false; if (other.getSum() != null && other.getSum().equals(this.getSum()) == false) return false; if (other.getMinimum() == null ^ this.getMinimum() == null) return false; if (other.getMinimum() != null && other.getMinimum().equals(this.getMinimum()) == false) return false; if (other.getMaximum() == null ^ this.getMaximum() == null) return false; if (other.getMaximum() != null && other.getMaximum().equals(this.getMaximum()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getSampleCount() == null) ? 0 : getSampleCount().hashCode()); hashCode = prime * hashCode + ((getSum() == null) ? 0 : getSum().hashCode()); hashCode = prime * hashCode + ((getMinimum() == null) ? 0 : getMinimum().hashCode()); hashCode = prime * hashCode + ((getMaximum() == null) ? 0 : getMaximum().hashCode()); return hashCode; } @Override public StatisticSet clone() { try { return (StatisticSet) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy