org.opendatadiscovery.client.model.BooleanFieldStat 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;
/**
* BooleanFieldStat
*/
@JsonPropertyOrder({
BooleanFieldStat.JSON_PROPERTY_TRUE_COUNT,
BooleanFieldStat.JSON_PROPERTY_FALSE_COUNT,
BooleanFieldStat.JSON_PROPERTY_NULLS_COUNT
})
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-04-17T12:42:16.563637609Z[Etc/UTC]")
public class BooleanFieldStat {
public static final String JSON_PROPERTY_TRUE_COUNT = "true_count";
private Long trueCount;
public static final String JSON_PROPERTY_FALSE_COUNT = "false_count";
private Long falseCount;
public static final String JSON_PROPERTY_NULLS_COUNT = "nulls_count";
private Long nullsCount;
public BooleanFieldStat() {
}
public BooleanFieldStat trueCount(Long trueCount) {
this.trueCount = trueCount;
return this;
}
/**
* Get trueCount
* @return trueCount
**/
@javax.annotation.Nonnull
@JsonProperty(JSON_PROPERTY_TRUE_COUNT)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public Long getTrueCount() {
return trueCount;
}
@JsonProperty(JSON_PROPERTY_TRUE_COUNT)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setTrueCount(Long trueCount) {
this.trueCount = trueCount;
}
public BooleanFieldStat falseCount(Long falseCount) {
this.falseCount = falseCount;
return this;
}
/**
* Get falseCount
* @return falseCount
**/
@javax.annotation.Nonnull
@JsonProperty(JSON_PROPERTY_FALSE_COUNT)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public Long getFalseCount() {
return falseCount;
}
@JsonProperty(JSON_PROPERTY_FALSE_COUNT)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setFalseCount(Long falseCount) {
this.falseCount = falseCount;
}
public BooleanFieldStat 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;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
BooleanFieldStat booleanFieldStat = (BooleanFieldStat) o;
return Objects.equals(this.trueCount, booleanFieldStat.trueCount) &&
Objects.equals(this.falseCount, booleanFieldStat.falseCount) &&
Objects.equals(this.nullsCount, booleanFieldStat.nullsCount);
}
@Override
public int hashCode() {
return Objects.hash(trueCount, falseCount, nullsCount);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class BooleanFieldStat {\n");
sb.append(" trueCount: ").append(toIndentedString(trueCount)).append("\n");
sb.append(" falseCount: ").append(toIndentedString(falseCount)).append("\n");
sb.append(" nullsCount: ").append(toIndentedString(nullsCount)).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