org.opendatadiscovery.client.model.IntegerFieldStat Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ingestion-contract-client Show documentation
Show all versions of ingestion-contract-client Show documentation
Ingestion Contract WebFlux Client defines OpenDataDiscovery APIs and models for Spring WebClient
/*
* OpenDataDiscovery API Contract
* OpenDataDiscovery API Contract
*
* The version of the OpenAPI document: 0.0.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package org.opendatadiscovery.client.model;
import java.util.Objects;
import java.util.Arrays;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import com.fasterxml.jackson.annotation.JsonTypeName;
/**
* IntegerFieldStat
*/
@JsonPropertyOrder({
IntegerFieldStat.JSON_PROPERTY_LOW_VALUE,
IntegerFieldStat.JSON_PROPERTY_HIGH_VALUE,
IntegerFieldStat.JSON_PROPERTY_MEAN_VALUE,
IntegerFieldStat.JSON_PROPERTY_MEDIAN_VALUE,
IntegerFieldStat.JSON_PROPERTY_NULLS_COUNT,
IntegerFieldStat.JSON_PROPERTY_UNIQUE_COUNT
})
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-04-17T12:42:16.563637609Z[Etc/UTC]")
public class IntegerFieldStat {
public static final String JSON_PROPERTY_LOW_VALUE = "low_value";
private Long lowValue;
public static final String JSON_PROPERTY_HIGH_VALUE = "high_value";
private Long highValue;
public static final String JSON_PROPERTY_MEAN_VALUE = "mean_value";
private Long meanValue;
public static final String JSON_PROPERTY_MEDIAN_VALUE = "median_value";
private Long medianValue;
public static final String JSON_PROPERTY_NULLS_COUNT = "nulls_count";
private Long nullsCount;
public static final String JSON_PROPERTY_UNIQUE_COUNT = "unique_count";
private Long uniqueCount;
public IntegerFieldStat() {
}
public IntegerFieldStat lowValue(Long lowValue) {
this.lowValue = lowValue;
return this;
}
/**
* Get lowValue
* @return lowValue
**/
@javax.annotation.Nonnull
@JsonProperty(JSON_PROPERTY_LOW_VALUE)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public Long getLowValue() {
return lowValue;
}
@JsonProperty(JSON_PROPERTY_LOW_VALUE)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setLowValue(Long lowValue) {
this.lowValue = lowValue;
}
public IntegerFieldStat highValue(Long highValue) {
this.highValue = highValue;
return this;
}
/**
* Get highValue
* @return highValue
**/
@javax.annotation.Nonnull
@JsonProperty(JSON_PROPERTY_HIGH_VALUE)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public Long getHighValue() {
return highValue;
}
@JsonProperty(JSON_PROPERTY_HIGH_VALUE)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setHighValue(Long highValue) {
this.highValue = highValue;
}
public IntegerFieldStat meanValue(Long meanValue) {
this.meanValue = meanValue;
return this;
}
/**
* Get meanValue
* @return meanValue
**/
@javax.annotation.Nullable
@JsonProperty(JSON_PROPERTY_MEAN_VALUE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public Long getMeanValue() {
return meanValue;
}
@JsonProperty(JSON_PROPERTY_MEAN_VALUE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setMeanValue(Long meanValue) {
this.meanValue = meanValue;
}
public IntegerFieldStat medianValue(Long medianValue) {
this.medianValue = medianValue;
return this;
}
/**
* Get medianValue
* @return medianValue
**/
@javax.annotation.Nullable
@JsonProperty(JSON_PROPERTY_MEDIAN_VALUE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public Long getMedianValue() {
return medianValue;
}
@JsonProperty(JSON_PROPERTY_MEDIAN_VALUE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setMedianValue(Long medianValue) {
this.medianValue = medianValue;
}
public IntegerFieldStat nullsCount(Long nullsCount) {
this.nullsCount = nullsCount;
return this;
}
/**
* Get nullsCount
* @return nullsCount
**/
@javax.annotation.Nonnull
@JsonProperty(JSON_PROPERTY_NULLS_COUNT)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public Long getNullsCount() {
return nullsCount;
}
@JsonProperty(JSON_PROPERTY_NULLS_COUNT)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setNullsCount(Long nullsCount) {
this.nullsCount = nullsCount;
}
public IntegerFieldStat uniqueCount(Long uniqueCount) {
this.uniqueCount = uniqueCount;
return this;
}
/**
* Get uniqueCount
* @return uniqueCount
**/
@javax.annotation.Nonnull
@JsonProperty(JSON_PROPERTY_UNIQUE_COUNT)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public Long getUniqueCount() {
return uniqueCount;
}
@JsonProperty(JSON_PROPERTY_UNIQUE_COUNT)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setUniqueCount(Long uniqueCount) {
this.uniqueCount = uniqueCount;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
IntegerFieldStat integerFieldStat = (IntegerFieldStat) o;
return Objects.equals(this.lowValue, integerFieldStat.lowValue) &&
Objects.equals(this.highValue, integerFieldStat.highValue) &&
Objects.equals(this.meanValue, integerFieldStat.meanValue) &&
Objects.equals(this.medianValue, integerFieldStat.medianValue) &&
Objects.equals(this.nullsCount, integerFieldStat.nullsCount) &&
Objects.equals(this.uniqueCount, integerFieldStat.uniqueCount);
}
@Override
public int hashCode() {
return Objects.hash(lowValue, highValue, meanValue, medianValue, nullsCount, uniqueCount);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class IntegerFieldStat {\n");
sb.append(" lowValue: ").append(toIndentedString(lowValue)).append("\n");
sb.append(" highValue: ").append(toIndentedString(highValue)).append("\n");
sb.append(" meanValue: ").append(toIndentedString(meanValue)).append("\n");
sb.append(" medianValue: ").append(toIndentedString(medianValue)).append("\n");
sb.append(" nullsCount: ").append(toIndentedString(nullsCount)).append("\n");
sb.append(" uniqueCount: ").append(toIndentedString(uniqueCount)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy