()
| 500 | } |
| 501 | |
| 502 | getISOFormat() { |
| 503 | if (!this._isoFormatInstance) { |
| 504 | this._isoFormatInstance = DateFormat.getDateTimeInstance({ |
| 505 | strictParsing: true, |
| 506 | pattern: "YYYY-MM-dd hh:mm:ss", |
| 507 | calendarType: this._primaryCalendarType, |
| 508 | }); |
| 509 | } |
| 510 | return this._isoFormatInstance; |
| 511 | } |
| 512 | |
| 513 | /** |
| 514 | * @override |