View Javadoc

1   package ch.qos.logback.core.rolling.helper;
2   
3   public enum PeriodicityType {
4   
5     ERRONEOUS, TOP_OF_SECOND, TOP_OF_MINUTE, TOP_OF_HOUR, HALF_DAY, TOP_OF_DAY, TOP_OF_WEEK, TOP_OF_MONTH;
6   
7     // The followed list is assued to be in 
8     static PeriodicityType[] VALID_ORDERED_LIST = new PeriodicityType[] {
9         PeriodicityType.TOP_OF_SECOND, 
10        PeriodicityType.TOP_OF_MINUTE,
11        PeriodicityType.TOP_OF_HOUR, 
12        PeriodicityType.TOP_OF_DAY, 
13        PeriodicityType.TOP_OF_WEEK,
14        PeriodicityType.TOP_OF_MONTH };
15  
16  }