com.precisely.apis.model.FrequencyGroup Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of PreciselyAPISJavaSDK Show documentation
Show all versions of PreciselyAPISJavaSDK Show documentation
Java SDK for accessing Precisely APIs which transform your business with new insights. Enrich and enhance your data, applications, business processes, and workflows with hundreds of Location and Identity datasets and APIs.
The newest version!
/*
* Precisely APIs
* Enhance & enrich your data, applications, business processes, and workflows with rich location, information, and identify APIs.
*
* The version of the OpenAPI document: 18.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.precisely.apis.model;
import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
/**
* FrequencyGroup
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-02-13T16:39:48.889177+05:30[Asia/Calcutta]")
public class FrequencyGroup {
public static final String SERIALIZED_NAME_BURN_PROB = "burnProb";
@SerializedName(SERIALIZED_NAME_BURN_PROB)
private Integer burnProb;
public static final String SERIALIZED_NAME_HIST_PERIM = "histPerim";
@SerializedName(SERIALIZED_NAME_HIST_PERIM)
private Integer histPerim;
public static final String SERIALIZED_NAME_PROB_IGNIT = "probIgnit";
@SerializedName(SERIALIZED_NAME_PROB_IGNIT)
private Integer probIgnit;
public static final String SERIALIZED_NAME_LINE_DIST = "lineDist";
@SerializedName(SERIALIZED_NAME_LINE_DIST)
private Integer lineDist;
public FrequencyGroup() {
}
public FrequencyGroup burnProb(Integer burnProb) {
this.burnProb = burnProb;
return this;
}
/**
* Get burnProb
* @return burnProb
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public Integer getBurnProb() {
return burnProb;
}
public void setBurnProb(Integer burnProb) {
this.burnProb = burnProb;
}
public FrequencyGroup histPerim(Integer histPerim) {
this.histPerim = histPerim;
return this;
}
/**
* Get histPerim
* @return histPerim
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public Integer getHistPerim() {
return histPerim;
}
public void setHistPerim(Integer histPerim) {
this.histPerim = histPerim;
}
public FrequencyGroup probIgnit(Integer probIgnit) {
this.probIgnit = probIgnit;
return this;
}
/**
* Get probIgnit
* @return probIgnit
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public Integer getProbIgnit() {
return probIgnit;
}
public void setProbIgnit(Integer probIgnit) {
this.probIgnit = probIgnit;
}
public FrequencyGroup lineDist(Integer lineDist) {
this.lineDist = lineDist;
return this;
}
/**
* Get lineDist
* @return lineDist
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public Integer getLineDist() {
return lineDist;
}
public void setLineDist(Integer lineDist) {
this.lineDist = lineDist;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
FrequencyGroup frequencyGroup = (FrequencyGroup) o;
return Objects.equals(this.burnProb, frequencyGroup.burnProb) &&
Objects.equals(this.histPerim, frequencyGroup.histPerim) &&
Objects.equals(this.probIgnit, frequencyGroup.probIgnit) &&
Objects.equals(this.lineDist, frequencyGroup.lineDist);
}
@Override
public int hashCode() {
return Objects.hash(burnProb, histPerim, probIgnit, lineDist);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class FrequencyGroup {\n");
sb.append(" burnProb: ").append(toIndentedString(burnProb)).append("\n");
sb.append(" histPerim: ").append(toIndentedString(histPerim)).append("\n");
sb.append(" probIgnit: ").append(toIndentedString(probIgnit)).append("\n");
sb.append(" lineDist: ").append(toIndentedString(lineDist)).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 ");
}
}