Packages

package timestamp

Contains functionality for turning Entry timestamps (which are Longs representing the number of milliseconds since the Unix epoch) into text.

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. timestamp
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. class HumanReadableTimestampFormatter extends SimpleDateFormatTimestampFormatter

    Converts timestamps into a human-readable and sortable (larger units precede smaller units) format.

  2. class ISO8601TimestampFormatter extends SimpleDateFormatTimestampFormatter

    Converts timestamps into their ISO 8601 string representation.

  3. case class SimpleDateFormatTimestampFormatter(format: String, tz: Option[TimeZone] = None) extends Formatter[Long] with Product with Serializable

    Converts timestamps into their string representation using a SimpleDateFormat.

    Converts timestamps into their string representation using a SimpleDateFormat.

    format

    a SimpleDateFormat format string

    tz

    the optional time zone to use to format timestamps, None means to use the system default

Value Members

  1. object HumanReadableTimestampFormatter extends HumanReadableTimestampFormatter

    Converts timestamps into a human-readable and sortable (larger units precede smaller units) format for the default time zone.

  2. object ISO8601TimestampFormatter extends ISO8601TimestampFormatter

    Converts timestamps into their ISO 8601 string representation for the system default time zone.

  3. object JavaEpochTimestampFormatter extends Formatter[Long]

    Converts timestamps into a string containing the number of milliseconds since the Unix epoch in UTC.

Inherited from AnyRef

Inherited from Any

Ungrouped