Package com.longbridge.fundamental
Enum IndustryRankIndicator
- java.lang.Object
-
- java.lang.Enum<IndustryRankIndicator>
-
- com.longbridge.fundamental.IndustryRankIndicator
-
- All Implemented Interfaces:
Serializable,Comparable<IndustryRankIndicator>
public enum IndustryRankIndicator extends Enum<IndustryRankIndicator>
Ranking indicator forFundamentalContext.getIndustryRank(com.longbridge.fundamental.IndustryRankOptions).
-
-
Enum Constant Summary
Enum Constants Enum Constant Description LeadingGainerLeading gainerMarketCapMarket capitalisationNetProfitNet profitNetProfitGrowthNet profit growthPopularityPopularityRevenueRevenueRevenueGrowthRevenue growthTodayTrendToday's trend
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static IndustryRankIndicatorvalueOf(String name)Returns the enum constant of this type with the specified name.static IndustryRankIndicator[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LeadingGainer
public static final IndustryRankIndicator LeadingGainer
Leading gainer
-
TodayTrend
public static final IndustryRankIndicator TodayTrend
Today's trend
-
Popularity
public static final IndustryRankIndicator Popularity
Popularity
-
MarketCap
public static final IndustryRankIndicator MarketCap
Market capitalisation
-
Revenue
public static final IndustryRankIndicator Revenue
Revenue
-
RevenueGrowth
public static final IndustryRankIndicator RevenueGrowth
Revenue growth
-
NetProfit
public static final IndustryRankIndicator NetProfit
Net profit
-
NetProfitGrowth
public static final IndustryRankIndicator NetProfitGrowth
Net profit growth
-
-
Method Detail
-
values
public static IndustryRankIndicator[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (IndustryRankIndicator c : IndustryRankIndicator.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static IndustryRankIndicator valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-