com.factset.sdk.OpenRisk.models.Stat Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openrisk Show documentation
Show all versions of openrisk Show documentation
FactSet SDK for Java - openrisk
The newest version!
/*
* Open:Risk API
* Service to calculate parametric linear risk statistics and generate risk model asset identifier mappings.
*
* The version of the OpenAPI document: 1.26.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.OpenRisk.models;
import java.util.Objects;
import java.util.Arrays;
import java.util.Map;
import java.util.HashMap;
import com.factset.sdk.OpenRisk.models.StatCalculationLevel;
import com.factset.sdk.OpenRisk.models.StatCalculationSettings;
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 java.io.Serializable;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import com.factset.sdk.OpenRisk.JSON;
/**
* Risk statistic name and calculation level plus optional stat settings
*/
@ApiModel(description = "Risk statistic name and calculation level plus optional stat settings")
@JsonPropertyOrder({
Stat.JSON_PROPERTY_NAME,
Stat.JSON_PROPERTY_LEVEL,
Stat.JSON_PROPERTY_SETTINGS
})
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
public class Stat implements Serializable {
private static final long serialVersionUID = 1L;
public static final String JSON_PROPERTY_NAME = "name";
private String name;
public static final String JSON_PROPERTY_LEVEL = "level";
private StatCalculationLevel level;
public static final String JSON_PROPERTY_SETTINGS = "settings";
private StatCalculationSettings settings;
public Stat() {
}
@JsonCreator
public Stat(
@JsonProperty(value=JSON_PROPERTY_NAME, required=true) String name,
@JsonProperty(value=JSON_PROPERTY_LEVEL, required=true) StatCalculationLevel level
) {
this();
this.name = name;
this.level = level;
}
public Stat name(String name) {
this.name = name;
return this;
}
/**
* Name of the stat
* @return name
**/
@jakarta.annotation.Nonnull
@ApiModelProperty(required = true, value = "Name of the stat")
@JsonProperty(JSON_PROPERTY_NAME)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public String getName() {
return name;
}
@JsonProperty(JSON_PROPERTY_NAME)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setName(String name) {
this.name = name;
}
public Stat level(StatCalculationLevel level) {
this.level = level;
return this;
}
/**
* Get level
* @return level
**/
@jakarta.annotation.Nonnull
@ApiModelProperty(required = true, value = "")
@JsonProperty(JSON_PROPERTY_LEVEL)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public StatCalculationLevel getLevel() {
return level;
}
@JsonProperty(JSON_PROPERTY_LEVEL)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setLevel(StatCalculationLevel level) {
this.level = level;
}
public Stat settings(StatCalculationSettings settings) {
this.settings = settings;
return this;
}
/**
* Get settings
* @return settings
**/
@jakarta.annotation.Nullable
@ApiModelProperty(value = "")
@JsonProperty(JSON_PROPERTY_SETTINGS)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public StatCalculationSettings getSettings() {
return settings;
}
@JsonProperty(JSON_PROPERTY_SETTINGS)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setSettings(StatCalculationSettings settings) {
this.settings = settings;
}
/**
* Return true if this Stat object is equal to o.
*/
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
Stat stat = (Stat) o;
return Objects.equals(this.name, stat.name) &&
Objects.equals(this.level, stat.level) &&
Objects.equals(this.settings, stat.settings);
}
@Override
public int hashCode() {
return Objects.hash(name, level, settings);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class Stat {\n");
sb.append(" name: ").append(toIndentedString(name)).append("\n");
sb.append(" level: ").append(toIndentedString(level)).append("\n");
sb.append(" settings: ").append(toIndentedString(settings)).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 ");
}
}