Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* FactSet Estimates
* Gain access to 20+ years of comprehensive estimates and statistics of over 250+ estimated metrics, including financial statement items, product segments, geosegments, and industry metrics. FactSet's consensus estimates are aggregated from a wide base of over 800+ contributors and cover over 19,000 active companies across 90+ countries. Data returned can be accessed on the data frequencies based on quarterly, fiscal years, and calendar years. FactSet Estimates updates on a real time basis intraday (every 5 minutes). Updating times vary based on earning season vs. non-earning season but the goal is to have the data available to the client within a few hours that FactSet receives updated information. Often times updates times can be much faster as FactSet has always been known as one of the fastest estimate providers in the market.
*
* The version of the OpenAPI document: 2.5.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.FactSetEstimates.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.FactSetEstimates.JSON;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonValue;
/**
* Sub-Category Filter for the Primary Category Requested. Choose a related sub-category for the Category requested. For methodology, visit [OA 16038](https://my.apps.factset.com/oa/pages/16038) <p>Financial Statement - * **BALANCE_SHEET** - Balance Sheet line items, such as Assets, Long-term Debt, and more. * **CASH_FLOW** - Cash Flow Statement line items, such as Free Cash Flow and Share Repurchases * **INCOME_STATEMENT** - Income Statement line items, such as EPS, Sales, DPS, and more. * **MISCELLANEOUS** - EPS Long Term Growth </p> <p> Industry Metrics - * **AIRLINES** - Including items such as Revenue Passenger, Total Revenue per ASK, Available Seats, and more. * **BANKS** - Including items such as Net Interest Income, Trading Income, Net Loans, and more. SUPPLEMENTAL * **COMMODITIES** - Including items such as Average Target Price. * **COMPUTER_HARDWARE** - Including items such as Total Addressable Market. * **CONSUMER_SERVICES** - Including items such as Gross Merchandise Volume * **EDUCATION** - Including Items such as Total Student Enrollment * **FINANCIAL_SERVICE_PROVIDER** - Including items such as Annual Subscription Value * **HOME_BUILDERS** - Including items such as Home Sales, Land Sales, Cancellation Rates, and more. * **HOSPITALS** - Including items such as Bad Debt Provisions, Medical Cost Ratio, SS Admissions and more. * **HOTELS** - Including items such as Average Daily Rate, Occupancy %, RevPAR, and more. * **INSURANCE** - Including items such as Gross Premiums Written, Underwriting Income, and Claims. * **HOSPITALS** - Including items such as Bad Debt Provisions, Medical Cost Ratio, SS Admissions and more. * **HOTELS** - Including items such as Average Daily Rate, Occupancy %, RevPAR, and more. * **INSURANCE** - Including items such as Gross Premiums Written, Underwriting Income, and Claims. * **MARIJUANA** - Including items such as Cost per Gram and Kg of Cannabis Sold. * **MINING** - Including items such as Realized Price and Total Production * **MULTIFINANCIAL** - Including items such as AUM, Net Flows, and Fee Related Earnings. * **OIL_AND_GAS** - Including items such as Downstream Income, Production per Day, and Exploration Expense. * **OTHER** - Target Price * **REITS** - Including items such as Funds from Operations, Implied Cap Rate, and LTV. * **RESTAURANTS** - Including items such as Restaurant Margin. * **RETAILERS** - Including items such as Stores Information, Selling Space and Net sales per square foot. * **TELECOMMUNICATIONS** - Including items such as Gross Adds, Monthly Revenue Per User, Churn, and more. * **TRANSPORTATION** - Including items such as Revenue Per Unit, Volume Growth, and Operating Ratio.</p>
*/
public enum Subcategory {
AIRLINES("AIRLINES"),
BALANCE_SHEET("BALANCE_SHEET"),
BANKS("BANKS"),
CASH_FLOW("CASH_FLOW"),
COMMODITIES("COMMODITIES"),
COMPUTER_HARDWARE("COMPUTER_HARDWARE"),
CONSUMER_SERVICES("CONSUMER_SERVICES"),
EDUCATION("EDUCATION"),
FINANCIAL_SERVICE_PROVIDER("FINANCIAL_SERVICE_PROVIDER"),
HOME_BUILDERS("HOME_BUILDERS"),
HOSPITALS("HOSPITALS"),
HOTELS("HOTELS"),
INCOME_STATEMENT("INCOME_STATEMENT"),
INSURANCE("INSURANCE"),
MARIJUANA("MARIJUANA"),
MINING("MINING"),
MISCELLANEOUS("MISCELLANEOUS"),
MULTIFINANCIAL("MULTIFINANCIAL"),
OIL_AND_GAS("OIL_AND_GAS"),
OTHER("OTHER"),
REITS("REITS"),
RESTAURANTS("RESTAURANTS"),
RETAILERS("RETAILERS"),
TELECOMMUNICATIONS("TELECOMMUNICATIONS"),
TRANSPORTATION("TRANSPORTATION");
private String value;
Subcategory(String value) {
this.value = value;
}
@JsonValue
public String getValue() {
return value;
}
@Override
public String toString() {
return String.valueOf(value);
}
@JsonCreator
public static Subcategory fromValue(String value) {
for (Subcategory b : Subcategory.values()) {
if (b.value.equals(value)) {
return b;
}
}
throw new IllegalArgumentException("Unexpected value '" + value + "'");
}
}