biweekly.property
Class DateTimeStamp
java.lang.Object
biweekly.property.ICalProperty
biweekly.property.ValuedProperty<Date>
biweekly.property.DateTimeProperty
biweekly.property.DateTimeStamp
public class DateTimeStamp
- extends DateTimeProperty
The meaning of this property varies depending on the state of the iCalendar
object:
- If a
Method
property exists: Defines the creation date of
the iCalendar object (not the creation date of the actual calendar data). Use
the Created
property to define the date that the calendar data was
last created.
- Otherwise - Defines the date that the calendar data was last
modified (the
LastModified
property also holds this information).
Examples:
Date datetime = ...
DateTimeStamp dtstamp = new DateTimeStamp(datetime);
- Author:
- Michael Angstadt
- Specification Reference:
- RFC 5545 p.137-8
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
DateTimeStamp
public DateTimeStamp(Date date)
- Creates a date time stamp property.
- Parameters:
date
- the date
Copyright © 2013 Michael Angstadt. All Rights Reserved.