# Class: com.pnfsoftware.jeb.util.format.DateFormatter

Utility methods to format dates.

## Constructor: DateFormatter


## Static Method: currentDate
- return type: `java.lang.String`

Description: Format the current local date as `YYYY/MM/DD`.
return: the formatted local date

## Static Method: currentDateGMT
- return type: `java.lang.String`

Description: Format the current GMT date as `YYYY/MM/DD`.
return: the formatted GMT date

## Static Method: formatLocalDate
- parameter: `f`, type: `java.lang.String`
- return type: `java.lang.String`

Description: Format the local date. 

 The following patterns are replaced:
 \- YYYY : year, 4 digits
 \- YY : year, last 2 digits
 \- MM : month, forcing 2 digits
 \- M : month
 \- DD : day of month, forcing 2 digits
 \- D : day of month
parameter: f: format string
return: the formatted string

