
/**
 * Defines the index of a week day within a month.
 */
export enum DayOfTheWeekIndex {
    
    /**
     * The first specific day of the week in the month. For example, the first Tuesday of the month. 
     */
    First = 0,
    
    /**
     * The second specific day of the week in the month. For example, the second Tuesday of the month.
     */
    Second = 1,
    
    /**
     * The third specific day of the week in the month. For example, the third Tuesday of the month.
     */
    Third = 2,
    
    /**
     * The fourth specific day of the week in the month. For example, the fourth Tuesday of the month.
     */
    Fourth = 3,
    
    /**
     * The last specific day of the week in the month. For example, the last Tuesday of the month.
     */
    Last = 4
}