protected String getDatePattern()

in src/main/java/com/epam/parso/date/SasDateFormat.java [31:46]


        protected String getDatePattern(int width, int precision) {
            switch (width) {
                case 5:
                case 6:
                    return "ddMMM";
                case 9:
                case 10:
                    return "ddMMMyyyy";
                case 11:
                    return "dd-MMM-yyyy";
                case 7:
                case 8:
                default:
                    return "ddMMMyy";
            }
        }