public enum AccumulatePeriod extends Enum<AccumulatePeriod>
| 枚举常量和说明 |
|---|
ANNUAL
年度范围
|
Beginning_Of_The_Year_To_Now
年初至今
|
Five_Days
近五天
|
Five_Minutes
近五分钟
|
Half_Year
近半年
|
Last_Five_Year
近五年
|
Last_Two_Year
近两年
|
Last_Year
近一年
|
Listing_Date_To_Now
上市至今
|
QUARTERLY
一季度报
|
QUARTERLY_Recent_Third
三季度报
|
SEMIANNUAL
中报
|
Ten_Days
近10日
|
Twenty_Days
近20日
|
| 限定符和类型 | 方法和说明 |
|---|---|
String |
getRange() |
String |
getSuffix() |
static String |
getSuffixByIndex(Integer index) |
Integer |
getValue() |
void |
setRange(String range) |
void |
setSuffix(String suffix) |
void |
setValue(Integer value) |
static AccumulatePeriod |
valueOf(String name)
返回带有指定名称的该类型的枚举常量。
|
static AccumulatePeriod[] |
values()
按照声明该枚举类型的常量的顺序, 返回
包含这些常量的数组。
|
public static final AccumulatePeriod Five_Minutes
public static final AccumulatePeriod Five_Days
public static final AccumulatePeriod Ten_Days
public static final AccumulatePeriod Twenty_Days
public static final AccumulatePeriod Beginning_Of_The_Year_To_Now
public static final AccumulatePeriod Half_Year
public static final AccumulatePeriod Last_Year
public static final AccumulatePeriod Last_Two_Year
public static final AccumulatePeriod Last_Five_Year
public static final AccumulatePeriod Listing_Date_To_Now
public static final AccumulatePeriod ANNUAL
public static final AccumulatePeriod QUARTERLY
public static final AccumulatePeriod QUARTERLY_Recent_Third
public static final AccumulatePeriod SEMIANNUAL
public static AccumulatePeriod[] values()
for (AccumulatePeriod c : AccumulatePeriod.values()) System.out.println(c);
public static AccumulatePeriod valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值public Integer getValue()
public void setValue(Integer value)
public String getSuffix()
public void setSuffix(String suffix)
public String getRange()
public void setRange(String range)
Copyright © 2025. All rights reserved.