Liquid XML Data Binder (C++, Java, VB6) / Reference / Java / Reference / com.liquid_technologies.ltxmllib20 / DateTime / Java setDateTime - DateTime
In This Topic
    Java setDateTime - DateTime
    In This Topic
    public void setDateTime(DateTime dt,
                                               DateTimeType type)
         throws LtInvalidStateException

    public void setDateTime(GregorianCalendar calendar,
                                               boolean useTimeZone)
         throws LtInvalidValueException,
                      LtInvalidStateException

    public void setDateTime( short year,
                                                 byte month,
                                                 byte day,
                                                 byte hour,
                                                 byte minute,
                                                 byte second)
         throws LtInvalidValueException,
                      LtInvalidStateException

    public void setDateTime( short year,
                                                 byte month,
                                                 byte day,
                                                 byte hour,
                                                 byte minute,
                                                 byte second,
                                                 short milli,
                                                 short micro,
                                                 short nano)
         throws LtInvalidValueException,
                      LtInvalidStateException
      Property Description  
        Argument year sets the Year part of the date. (Valid Range -9999 to 9999)  
        Argument month sets the Month part of the date. Jan = 1, Feb = 2 etc. (Valid Range = 1 to 12)  
        Argument day sets the Day part of the date. (Valid Range = 1 to days in month)  
        Argument hour sets the Hours part of the date. (Valid Range = 0 to 23)  
        Argument minute sets the Minutes part of the date. (Valid Range = 0 to 59)  
        Argument second sets the Seconds part of the date. (Valid Range = 0 to 59)  
        Argument milli sets the Milli-Seocnds part of the date. (Valid Range = 0 to 999)  
        Argument micro sets the Micro-Seocnds part of the date. (Valid Range = 0 to 999)  
        Argument nano sets the Nano-Seocnds part of the date. (Valid Range = 0 to 9)  
        Argument date The date to be copied into this class  
        Argument type The type of date that will be stored in this class. date must contain enough information to fully populate the type.  
        Description Populates this DateTime as type dateTime.  
        Remarks This method is overloaded allowing different values to be set.
    Any values that are not provided are set to 0.
    NOTE: DateTime uses the XML Schema formula for proleptic Gregorian calendar where year 0 is illegal and -4 (4BC) as a leap year.

    Throws: LtInvalidValueException thrown on parsing invalid values.
    Throws: LtInvalidStateException thrown if this DateTimes current type is not either zeroYear or dateTime.