2.2.2.12 WeekDays

The WeekDays enumeration defines the days of the week on which to run the data collector set. Any combination of the bits MUST be allowed.

 typedef  enum
 {
   plaRunOnce = 0x00,
   plaSunday = 0x01,
   plaMonday = 0x02,
   plaTuesday = 0x04,
   plaWednesday = 0x08,
   plaThursday = 0x10,
   plaFriday = 0x20,
   plaSaturday = 0x40,
   plaEveryday = 0x7F
 } WeekDays;

plaRunOnce:  Run only once on the given start date and time.

plaSunday:  Run on Sunday.

plaMonday:   Run on Monday.

plaTuesday:  Run on Tuesday.

plaWednesday:  Run on Wednesday.

plaThursday:  Run on Thursday.

plaFriday:  Run on Friday.

plaSaturday:  Run on Saturday.

plaEveryday:  Run every day of the week.