public static enum HistoricalRequestBuilder.Days extends Enum<HistoricalRequestBuilder.Days>
Enum Constant and Description |
---|
ACTIVE_DAYS_ONLY
Include only active days (days where the instrument and field pair updated) in the data set returned
|
ALL_CALENDAR_DAYS
Include all days of the calendar in the data set returned
|
NON_TRADING_WEEKDAYS
Include all weekdays (Monday to Friday) in the data set
|
Modifier and Type | Method and Description |
---|---|
static HistoricalRequestBuilder.Days |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HistoricalRequestBuilder.Days[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HistoricalRequestBuilder.Days NON_TRADING_WEEKDAYS
public static final HistoricalRequestBuilder.Days ALL_CALENDAR_DAYS
public static final HistoricalRequestBuilder.Days ACTIVE_DAYS_ONLY
public static HistoricalRequestBuilder.Days[] values()
for (HistoricalRequestBuilder.Days c : HistoricalRequestBuilder.Days.values()) System.out.println(c);
public static HistoricalRequestBuilder.Days 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 nullCopyright © 2013. All Rights Reserved.