DateTimeTypeConverterBase Class
DateTime Type Converter.
Extends
Extended by
Implements
Methods
| Name |
Description |
|
| constructor(): DateTimeTypeConverterBase |
|
|
| convertFromString(value: string): undefined | Date |
Converts a string to a primitive value |
|
| convertFromStringWithOptions(value: string, options?: [key: string]: any): undefined | ConvertedPrimitives.Value | Promise<Value |
undefined> |
Default implementation just calls convertFromString with no options |
| convertToString(value?: Primitives.Value): string |
Converts a primitive value to a string |
|
| convertToStringWithOptions(value?: Primitives.Value, options?: [key: string]: any): string | Promise<string> |
Default implementation just calls convertToString with no options |
|
| getTimeFormat(): TimeFormat Protected Abstract |
|
|
| isEqualTo(valueA: Date, valueB: Date): boolean |
Determines if two primitive values are equal |
|
| isGreaterThan(a: Date, b: Date): boolean |
Determines if a primitive values is greater than another primitive value |
|
| isGreaterThanOrEqualTo(a: Date, b: Date): boolean |
Determines if a primitive values is greater than or equal to another primitive value |
|
| isLessThan(a: Date, b: Date): boolean |
Determines if a primitive values is less than another primitive value |
|
| isLessThanOrEqualTo(a: Date, b: Date): boolean |
Determines if a primitive values is less than or equal to another primitive value |
|
| isNotEqualTo(valueA: Date, valueB: Date): boolean |
Determines if two primitive values are not equal |
|
| sortCompare(valueA: Date, valueB: Date, _ignoreCase?: boolean): number |
Sort function for two primitive values |
|
| isAlternateDateFormats(type: AlternateDateFormats): boolean Static |
|
|
| isValidTimeDisplay(type: TimeDisplay): boolean Static |
|
|
Inherited methods
Properties
| Name |
Type |
Description |
|
| isLessGreaterType Accessor ReadOnly |
boolean |
Determines if the converter is for a numeric type |
|
Inherited properties
| Name |
Type |
Inherited from |
Description |
| isBooleanType Accessor Inherited ReadOnly |
boolean |
TypeConverter |
Determines if the converter is for a boolean type |
| isNullableType Accessor Inherited ReadOnly |
boolean |
TypeConverter |
Determines if the converter is for a nullable type |
| isStringType Accessor Inherited ReadOnly |
boolean |
TypeConverter |
Determines if the converter is for a string type |
Defined in
Last Updated: 14 October, 2025