com.factset.sdk.PAEngine.models.PACalculationColumn Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of paengine Show documentation
Show all versions of paengine Show documentation
FactSet SDK for Java - paengine
/*
* PA Engine API
* Allow clients to fetch Analytics through APIs.
*
* The version of the OpenAPI document: 3.16.0
* Contact: [email protected]
*
* 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.factset.sdk.PAEngine.models;
import java.util.Objects;
import java.util.Arrays;
import java.util.Map;
import java.util.HashMap;
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 io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import org.openapitools.jackson.nullable.JsonNullable;
import com.fasterxml.jackson.annotation.JsonIgnore;
import org.openapitools.jackson.nullable.JsonNullable;
import java.util.NoSuchElementException;
import java.io.Serializable;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import com.factset.sdk.PAEngine.JSON;
/**
* PACalculationColumn
*/
@JsonPropertyOrder({
PACalculationColumn.JSON_PROPERTY_ID,
PACalculationColumn.JSON_PROPERTY_STATISTICS
})
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
public class PACalculationColumn implements Serializable {
private static final long serialVersionUID = 1L;
public static final String JSON_PROPERTY_ID = "id";
private JsonNullable id = JsonNullable.undefined();
public static final String JSON_PROPERTY_STATISTICS = "statistics";
private JsonNullable> statistics = JsonNullable.>undefined();
public PACalculationColumn() {
}
public PACalculationColumn id(String id) {
this.id = JsonNullable.of(id);
return this;
}
/**
* FactSet-defined or User-defined Column identifier.
* @return id
**/
@jakarta.annotation.Nullable
@ApiModelProperty(value = "FactSet-defined or User-defined Column identifier.")
@JsonIgnore
public String getId() {
return id.orElse(null);
}
@JsonProperty(JSON_PROPERTY_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public JsonNullable getId_JsonNullable() {
return id;
}
@JsonProperty(JSON_PROPERTY_ID)
public void setId_JsonNullable(JsonNullable id) {
this.id = id;
}
public void setId(String id) {
this.id = JsonNullable.of(id);
}
public PACalculationColumn statistics(java.util.List statistics) {
this.statistics = JsonNullable.>of(statistics);
return this;
}
public PACalculationColumn addStatisticsItem(String statisticsItem) {
if (this.statistics == null || !this.statistics.isPresent()) {
this.statistics = JsonNullable.>of(new java.util.ArrayList<>());
}
try {
this.statistics.get().add(statisticsItem);
} catch (java.util.NoSuchElementException e) {
// this can never happen, as we make sure above that the value is present
}
return this;
}
/**
* Column Statistic identifier
* @return statistics
**/
@jakarta.annotation.Nullable
@ApiModelProperty(value = "Column Statistic identifier")
@JsonIgnore
public java.util.List getStatistics() {
return statistics.orElse(null);
}
@JsonProperty(JSON_PROPERTY_STATISTICS)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public JsonNullable> getStatistics_JsonNullable() {
return statistics;
}
@JsonProperty(JSON_PROPERTY_STATISTICS)
public void setStatistics_JsonNullable(JsonNullable> statistics) {
this.statistics = statistics;
}
public void setStatistics(java.util.List statistics) {
this.statistics = JsonNullable.>of(statistics);
}
/**
* Return true if this PACalculationColumn object is equal to o.
*/
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
PACalculationColumn paCalculationColumn = (PACalculationColumn) o;
return equalsNullable(this.id, paCalculationColumn.id) &&
equalsNullable(this.statistics, paCalculationColumn.statistics);
}
private static boolean equalsNullable(JsonNullable a, JsonNullable b) {
return a == b || (a != null && b != null && a.isPresent() && b.isPresent() && Objects.deepEquals(a.get(), b.get()));
}
@Override
public int hashCode() {
return Objects.hash(hashCodeNullable(id), hashCodeNullable(statistics));
}
private static int hashCodeNullable(JsonNullable a) {
if (a == null) {
return 1;
}
return a.isPresent() ? Arrays.deepHashCode(new Object[]{a.get()}) : 31;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class PACalculationColumn {\n");
sb.append(" id: ").append(toIndentedString(id)).append("\n");
sb.append(" statistics: ").append(toIndentedString(statistics)).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 ");
}
}