All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.factset.sdk.FactSetGlobalPrices.models.EventCategory Maven / Gradle / Ivy

/*
 * FactSet Global Prices API
 * The FactSet Global Prices API provides end of day market pricing content using cloud and microservices technology, encompassing both pricing as well as corporate actions and events data.

* * The version of the OpenAPI document: 1.7.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.FactSetGlobalPrices.models; import java.util.Objects; import java.util.Arrays; import java.util.Map; import java.util.HashMap; import io.swagger.annotations.ApiModel; import java.io.Serializable; import com.fasterxml.jackson.annotation.JsonPropertyOrder; import com.factset.sdk.FactSetGlobalPrices.JSON; import com.fasterxml.jackson.annotation.JsonCreator; import com.fasterxml.jackson.annotation.JsonValue; /** * Selects the Event Category to include in the response. * **CASH_DIVS** = Cash Dividends * **STOCK_DIST** = Stock Distributions * **SPINOFFS** = Spin Offs * **RIGHTS** = Rights Issue * **SPLITS** = Splits * **ALL** = Returns all Event Types. If left blank the service will default to ALL. */ public enum EventCategory { CASH_DIVS("CASH_DIVS"), STOCK_DIST("STOCK_DIST"), RIGHTS("RIGHTS"), SPINOFFS("SPINOFFS"), SPLITS("SPLITS"), ALL("ALL"); private String value; EventCategory(String value) { this.value = value; } @JsonValue public String getValue() { return value; } @Override public String toString() { return String.valueOf(value); } @JsonCreator public static EventCategory fromValue(String value) { for (EventCategory b : EventCategory.values()) { if (b.value.equals(value)) { return b; } } throw new IllegalArgumentException("Unexpected value '" + value + "'"); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy