org.h2.util
Class ToDateParser

java.lang.Object
  extended by org.h2.util.ToDateParser

public class ToDateParser
extends java.lang.Object

Emulates Oracle's TO_DATE function.
This class holds and handles the input data form the TO_DATE-method


Method Summary
static java.sql.Timestamp toDate(java.lang.String input, java.lang.String format)
          Parse a string as a date with the given format.
 java.lang.String toString()
           
static java.sql.Timestamp toTimestamp(java.lang.String input, java.lang.String format)
          Parse a string as a timestamp with the given format.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Method Detail

toString

public java.lang.String toString()
Overrides:
toString in class java.lang.Object

toTimestamp

public static java.sql.Timestamp toTimestamp(java.lang.String input,
                                             java.lang.String format)
Parse a string as a timestamp with the given format.

Parameters:
input - the input
format - the format
Returns:
the timestamp

toDate

public static java.sql.Timestamp toDate(java.lang.String input,
                                        java.lang.String format)
Parse a string as a date with the given format.

Parameters:
input - the input
format - the format
Returns:
the date as a timestamp