()
| 799 | } |
| 800 | |
| 801 | getISOFormat() { |
| 802 | if (!this._isoFormatInstance) { |
| 803 | this._isoFormatInstance = DateFormat.getTimeInstance({ |
| 804 | strictParsing: true, |
| 805 | pattern: DEFAULT_ISO_FORMAT, |
| 806 | }); |
| 807 | } |
| 808 | return this._isoFormatInstance; |
| 809 | } |
| 810 | |
| 811 | getDisplayFormat() { |
| 812 | // If no displayFormat is set, use the deprecated getFormat() for backward compatibility |