Package quadbase.reportdesigner.util
Interface ICustomParameterDateFormat
- All Superinterfaces:
quadbase.common.util.ICustomParameterDateFormat
public interface ICustomParameterDateFormat
extends quadbase.common.util.ICustomParameterDateFormat
A class implementing this interface should also implement
IQueryInParam. This
interface provides additional functionality to IQueryInParam. It allows the user to
provide a custom date format to convert a string into a java Date object. This can be used for
parameters with type DATE, TIME, or TIMESTAMP. The date format should follow the guidlines
defined in java.text.SimpleDateFormat.-
Method Summary
Modifier and TypeMethodDescriptionThis method should return a pattern for parsing the user input.
-
Method Details
-
getDateFormat
String getDateFormat()Description copied from interface:quadbase.common.util.ICustomParameterDateFormatThis method should return a pattern for parsing the user input. Please see java.text.SimpleDateFormat for details. Return null if the user input should not be parsed.- Specified by:
getDateFormatin interfacequadbase.common.util.ICustomParameterDateFormat
-