IncomeStatement

public class IncomeStatement

A single annual or quarterly income statement for a company, as filed with the SEC — revenue through to net income for the period ended getFiscalDateEnding.

Every monetary figure is a raw, as-reported amount in getReportedCurrency, not normalized or scaled by Alpha Vantage. A line item the company did not report for the period comes back as null rather than zero; see NoneableLong for why that distinction survives JSON parsing.

Author

Sylvester Sefa-Yeboah

Since

1.7.0

Constructors

Link copied to clipboard
public void IncomeStatement()

Properties

Link copied to clipboard
@Json(name = "comprehensiveIncomeNetOfTax")
public Long comprehensiveIncomeNetOfTax
Link copied to clipboard
@Json(name = "costofGoodsAndServicesSold")
public Long costofGoodsAndServicesSold
Link copied to clipboard
@Json(name = "costOfRevenue")
public Long costOfRevenue
Link copied to clipboard
@Json(name = "depreciation")
public Long depreciation
Link copied to clipboard
@Json(name = "depreciationAndAmortization")
public Long depreciationAndAmortization
Link copied to clipboard
@Json(name = "ebit")
public Long ebit
Link copied to clipboard
@Json(name = "ebitda")
public Long ebitda
Link copied to clipboard
@Json(name = "fiscalDateEnding")
public String fiscalDateEnding
Link copied to clipboard
@Json(name = "grossProfit")
public Long grossProfit
Link copied to clipboard
@Json(name = "incomeBeforeTax")
public Long incomeBeforeTax
Link copied to clipboard
@Json(name = "incomeTaxExpense")
public Long incomeTaxExpense
Link copied to clipboard
@Json(name = "interestAndDebtExpense")
public Long interestAndDebtExpense
Link copied to clipboard
@Json(name = "interestExpense")
public Long interestExpense
Link copied to clipboard
@Json(name = "interestIncome")
public Long interestIncome
Link copied to clipboard
@Json(name = "investmentIncomeNet")
public Long investmentIncomeNet
Link copied to clipboard
@Json(name = "netIncome")
public Long netIncome
Link copied to clipboard
@Json(name = "netIncomeFromContinuingOperations")
public Long netIncomeFromContinuingOperations
Link copied to clipboard
@Json(name = "netInterestIncome")
public Long netInterestIncome
Link copied to clipboard
@Json(name = "nonInterestIncome")
public Long nonInterestIncome
Link copied to clipboard
@Json(name = "operatingExpenses")
public Long operatingExpenses
Link copied to clipboard
@Json(name = "operatingIncome")
public Long operatingIncome
Link copied to clipboard
@Json(name = "otherNonOperatingIncome")
public Long otherNonOperatingIncome
Link copied to clipboard
@Json(name = "reportedCurrency")
public String reportedCurrency
Link copied to clipboard
@Json(name = "researchAndDevelopment")
public Long researchAndDevelopment
Link copied to clipboard
@Json(name = "sellingGeneralAndAdministrative")
public Long sellingGeneralAndAdministrative
Link copied to clipboard
@Json(name = "totalRevenue")
public Long totalRevenue

Functions

Link copied to clipboard
Returns comprehensive income net of tax: net income plus other comprehensive income items such as unrealized gains and losses.
Link copied to clipboard
Returns the cost of goods and services sold, a narrower cost measure than getCostOfRevenue that excludes some indirect costs.
Link copied to clipboard
Returns the cost directly attributable to producing the revenue reported for the period.
Link copied to clipboard
Returns depreciation expense for the period.
Link copied to clipboard
Returns combined depreciation and amortization expense for the period.
Link copied to clipboard
public Long getEbit()
Returns earnings before interest and taxes (EBIT).
Link copied to clipboard
public Long getEbitda()
Returns earnings before interest, taxes, depreciation and amortization (EBITDA).
Link copied to clipboard
Returns the closing date of the fiscal period this statement covers.
Link copied to clipboard
Returns gross profit: total revenue minus cost of revenue.
Link copied to clipboard
Returns pre-tax income: income before income tax expense is deducted.
Link copied to clipboard
Returns income tax expense for the period.
Link copied to clipboard
Returns combined interest and debt-related expense for the period.
Link copied to clipboard
Returns gross interest expense incurred for the period.
Link copied to clipboard
Returns gross interest income earned for the period.
Link copied to clipboard
Returns net income earned on investments, outside of core operations.
Link copied to clipboard
public Long getNetIncome()
Returns net income: the company's bottom-line profit or loss for the period.
Link copied to clipboard
Returns net income from continuing operations, excluding discontinued operations.
Link copied to clipboard
Returns interest income minus interest expense.
Link copied to clipboard
Returns income earned from sources other than interest, typically fees and commissions.
Link copied to clipboard
Returns total operating expenses for the period.
Link copied to clipboard
Returns operating income: gross profit minus operating expenses, before interest and taxes.
Link copied to clipboard
Returns other income earned outside the company's core operations.
Link copied to clipboard
Returns the ISO currency code this statement's monetary figures are stated in, for example USD.
Link copied to clipboard
Returns research and development expense.
Link copied to clipboard
Returns selling, general and administrative expense.
Link copied to clipboard
Returns total revenue recognized for the period.
Link copied to clipboard
public String toString()