1 | public void setAsOfDate(String asOfDateParam) {↵ | | 1 | public void setAsOfDate(String asOfDateParam) {↵
|
2 | _setAsOfDate(asOfDateParam);↵ | | 2 | _setAsOfDate(asOfDateParam);↵
|
3 | }↵ | | 3 | }↵
|
|
4 | /**↵ | | 4 | /**↵
|
5 | * Date Format with which asOfDate parameter to be parsed; optional.↵ | | 5 | * Date Format with which asOfDate parameter to be parsed; optional.↵
|
6 | * Must be a SimpleDateFormat compatible string.↵ | | 6 | * Must be a SimpleDateFormat compatible string.↵
|
7 | * If not specified, and asOfDateParam is specified, parse will use ISO8601↵ | | 7 | * If not specified, and asOfDateParam is specified, parse will use ISO8601↵
|
8 | * datetime and date formats.↵ | | 8 | * datetime and date formats.↵
|
9 | *↵ | | 9 | *↵
|
10 | * @param asOfDateFormat the SimpleDateFormat-compatible format string↵ | | 10 | * @param asOfDateFormat the SimpleDateFormat-compatible format string↵
|
11 | * @since Ant 1.6↵ | | 11 | * @since Ant 1.6↵
|
12 | */↵ | | 12 | */↵
|
13 | public void setAsOfDateFormat(String asOfDateFormat) {↵ | | 13 | public void setAsOfDateFormat(String asOfDateFormat) {↵
|
14 | _setAsOfDateFormat(asOfDateFormat) | | 14 | _setAsOfDateFormat(asOfDateFormat)
|