표시할 형식이다.
"yyyy-MM-dd" 나 "yyyy-MM-dd HH:mm:ss" 같은 값이 될 수 있고, SimpleDateFormat 생성자에 공급되는 pattern 파라미터와 동일하다.
내부적으로 다음과 같이 처리된다.
DateFormat df = new SimpleDateFormat(pattern, Locale.getDefault());return df.format(d);