Runtime components : Core components : Typed data : Reference : Default implementation : Date
  
Date
The Date type extends BasicType and is used for date input.
Attributes
Descriptor
ImplClass : com.ibm.btt.base.types.impl.SimplePropertyDescriptor
Converter
ImplClass : com.ibm.btt.base.types.impl.DateConverter
pattern (String)
Pattern is used when formatting and validating input. The default pattern is yyyy-MM-dd, and also support yyyy-M-dd.
Validator
ImplClass : com.ibm.btt.base.types.impl.DateValidator
minimumDate (String)
Is the lower limit of the date value input. Supported formats includes yyyy-MM-dd (2010-03-27), today +*y*m*d and today-*y*m*d.
Make sure yyyy-MM-dd is valid date. For example, 2010-02-30 is not supported.
* represents any number. Thus such formats are supported as today, today + 2y, today + 2m + 2d, today - 3y, today - 5d, etc.
maximumDate (String)
Is the upper limit of the date value input. The format is the same as the minimumDate parameter.
Go up to
Default implementation