Uses of Class
com.dxfeed.schedule.DayFilter

Packages that use DayFilter
com.dxfeed.schedule Provides information about trading days, sessions, and their schedules. 
 

Uses of DayFilter in com.dxfeed.schedule
 

Fields in com.dxfeed.schedule declared as DayFilter
static DayFilter DayFilter.ANY
          Accepts any day - useful for pure calendar navigation.
static DayFilter DayFilter.FRIDAY
          Accepts Fridays only - those with (Day.getDayOfWeek() == 5).
static DayFilter DayFilter.HOLIDAY
          Accepts holidays only - those with (Day.isHoliday() == true).
static DayFilter DayFilter.MONDAY
          Accepts Mondays only - those with (Day.getDayOfWeek() == 1).
static DayFilter DayFilter.NO_TRADING
          Deprecated. use NON_TRADING filter instead.
static DayFilter DayFilter.NON_TRADING
          Accepts non-trading days only - those with (Day.isTrading() == false).
static DayFilter DayFilter.SATURDAY
          Accepts Saturdays only - those with (Day.getDayOfWeek() == 6).
static DayFilter DayFilter.SHORT_DAY
          Accepts short days only - those with (Day.isShortDay() == true).
static DayFilter DayFilter.SUNDAY
          Accepts Sundays only - those with (Day.getDayOfWeek() == 7).
static DayFilter DayFilter.THURSDAY
          Accepts Thursdays only - those with (Day.getDayOfWeek() == 4).
static DayFilter DayFilter.TRADING
          Accepts trading days only - those with (Day.isTrading() == true).
static DayFilter DayFilter.TUESDAY
          Accepts Tuesdays only - those with (Day.getDayOfWeek() == 2).
static DayFilter DayFilter.WEDNESDAY
          Accepts Wednesdays only - those with (Day.getDayOfWeek() == 3).
static DayFilter DayFilter.WEEK_DAY
          Accepts week-days only - those with (Day.getDayOfWeek() <= 5).
static DayFilter DayFilter.WEEK_END
          Accepts weekends only - those with (Day.getDayOfWeek() >= 6).
 

Methods in com.dxfeed.schedule with parameters of type DayFilter
 Day Day.findNextDay(DayFilter filter)
          Returns following day accepted by specified filter.
 Day Day.findPrevDay(DayFilter filter)
          Returns previous day accepted by specified filter.
 Day Day.getNextDay(DayFilter filter)
          Returns following day accepted by specified filter.
 Day Day.getPrevDay(DayFilter filter)
          Returns previous day accepted by specified filter.
 



Copyright © 2013 Devexperts. All Rights Reserved.