public enum Property extends Enum<Property>
Basic Bash Script for adding Enums:
pbpaste | awk 'BEGIN { OFS="\t"} { printf "%s(%d, \"%s\", \"%s\"),\n", $1, NR-1, $1, $(NF) }' | pbcopy
pbpaste | awk 'BEGIN { OFS="\t"} { printf "%s(%d, \"%s\", \"%s\"),\n", toupper($1), NR-1, $1, $(NF) }' | pbcopy
| Modifier and Type | Method and Description |
|---|---|
static Property |
fromInt(int intValue)
Returns the integer value of this enum instance.
|
static Property |
fromString(String stringValue)
Returns the enum instance for the specified string.
|
static Property |
fromTag(String tagValue)
Returns the enum instance for the specified string for tag.
|
int |
getIntValue()
Returns the integer value of this enum instance.
|
String |
getStringValue()
Returns the underlying
stringValue of this instance. |
String |
getTagValue()
Returns the underlying
tagValue of this instance. |
static Property |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Property[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Property AfterHoursChangeRealtime
public static final Property AnnualizedGain
public static final Property AskRealtime
public static final Property AverageDailyVolume
public static final Property BidRealtime
public static final Property BookValuePerShare
public static final Property Change_ChangeInPercent
public static final Property ChangeFromFiftydayMovingAverage
public static final Property ChangeFromTwoHundreddayMovingAverage
public static final Property ChangeFromYearHigh
public static final Property ChangeFromYearLow
public static final Property ChangeInPercent
public static final Property ChangeInPercentRealtime
public static final Property ChangeRealtime
public static final Property Commission
public static final Property DaysRangeRealtime
public static final Property DaysValueChange
public static final Property DaysValueChangeRealtime
public static final Property DividendPayDate
public static final Property TrailingAnnualDividendYield
public static final Property TrailingAnnualDividendYieldInPercent
public static final Property DilutedEPS
public static final Property EPSEstimateCurrentYear
public static final Property EPSEstimateNextQuarter
public static final Property EPSEstimateNextYear
public static final Property ExDividendDate
public static final Property FiftydayMovingAverage
public static final Property SharesFloat
public static final Property HoldingsGain
public static final Property HoldingsGainPercent
public static final Property HoldingsGainPercentRealtime
public static final Property HoldingsGainRealtime
public static final Property HoldingsValue
public static final Property HoldingsValueRealtime
public static final Property LastTradeDate
public static final Property LastTradePriceOnly
public static final Property LastTradeRealtimeWithTime
public static final Property LastTradeSize
public static final Property LastTradeTime
public static final Property LastTradeWithTime
public static final Property MarketCapitalization
public static final Property MarketCapRealtime
public static final Property OneyrTargetPrice
public static final Property OrderBookRealtime
public static final Property PERatioRealtime
public static final Property PercentChangeFromFiftydayMovingAverage
public static final Property PercentChangeFromTwoHundreddayMovingAverage
public static final Property ChangeInPercentFromYearHigh
public static final Property PercentChangeFromYearLow
public static final Property PreviousClose
public static final Property PriceEPSEstimateCurrentYear
public static final Property PriceEPSEstimateNextYear
public static final Property PriceSales
public static final Property SharesOwned
public static final Property SharesOutstanding
public static final Property ShortRatio
public static final Property StockExchange
public static final Property TickerTrend
public static final Property TradeLinks
public static final Property TradeLinksAdditional
public static final Property TwoHundreddayMovingAverage
public static Property[] values()
for (Property c : Property.values()) System.out.println(c);
public static Property valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic int getIntValue()
fromInt(int)public String getStringValue()
stringValue of this instance.stringValue of this instance.fromString(String)public String getTagValue()
tagValue of this instance.tagValue of this instance.fromTag(String)public static Property fromInt(int intValue)
intValue - the integer value to determine the matching enum instance for.null if there is no match.getIntValue()public static Property fromString(String stringValue)
stringValue - the string value to determine the matching enum instance for.null if there is no match.getStringValue()public static Property fromTag(String tagValue)
tagValue - the string value to determine the matching enum instance for.null if there is no match.getTagValue()