(value: string | undefined)
| 867 | } |
| 868 | |
| 869 | isValidDisplayValue(value: string | undefined): boolean { |
| 870 | if (value === "") { |
| 871 | return true; |
| 872 | } |
| 873 | |
| 874 | return !!this.getDisplayFormat().parse(value as string, true); |
| 875 | } |
| 876 | |
| 877 | /** |
| 878 | * Checks if a value is valid against the current `valueFormat` value. |
nothing calls this directly
no test coverage detected