protected String getDatePattern()

in src/main/java/com/epam/parso/date/SasDateFormat.java [706:729]


        protected String getDatePattern(int width, int precision) {
            switch (width) {
                case 3:
                case 4:
                case 5:
                case 6:
                case 7:
                case 8:
                    return "MMM";
                case 9:
                case 10:
                case 11:
                    return "MMMM";
                case 12:
                case 13:
                case 14:
                case 15:
                case 16:
                case 17:
                    return "d MMM yyyy";
                default:
                    return "d MMMM yyyy";
            }
        }