(value: string)
| 628 | } |
| 629 | |
| 630 | getValueFromDisplayValue(value: string): string { |
| 631 | if (!this.getDisplayFormat().parse(value)) { |
| 632 | return value; |
| 633 | } |
| 634 | |
| 635 | return this.getValueFormat().format(this.getDisplayFormat().parse(value)); |
| 636 | } |
| 637 | |
| 638 | getDisplayValueFromValue(value: string): string { |
| 639 | if (!this.getValueFormat().parse(value)) { |
no test coverage detected