Class LogDate

java.lang.Object
org.tigris.subversion.javahl.LogDate
All Implemented Interfaces:
Serializable

public class LogDate extends Object implements Serializable
Holds date for a log message. This class maintains the time to the microsecond and is not lossy.
Since:
1.5
See Also:
  • Field Details

    • serialVersionUID

      private static final long serialVersionUID
      See Also:
    • formatter

      private static final DateFormat formatter
    • UTC

      private static final TimeZone UTC
    • timeMicros

      private final long timeMicros
    • cachedString

      private final String cachedString
    • cachedDate

      private final Calendar cachedDate
  • Constructor Details

  • Method Details

    • getTimeMicros

      public long getTimeMicros()
      Returns the time of the commit in microseconds
      Returns:
      the time of the commit measured in the number of microseconds since 00:00:00 January 1, 1970 UTC
    • getTimeMillis

      public long getTimeMillis()
      Returns the time of the commit in milliseconds
      Returns:
      the time of the commit measured in the number of milliseconds since 00:00:00 January 1, 1970 UTC
    • getCalender

      public Calendar getCalender()
      Returns the time of the commit as Calendar
      Returns:
      the time of the commit as java.util.Calendar
    • getDate

      public Date getDate()
      Returns the date of the commit
      Returns:
      the time of the commit as java.util.Date
    • toString

      public String toString()
      Overrides:
      toString in class Object
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class Object
    • equals

      public boolean equals(Object obj)
      Overrides:
      equals in class Object