Example usage for org.joda.time.format ISODateTimeFormat dateHourMinuteSecondMillis

List of usage examples for org.joda.time.format ISODateTimeFormat dateHourMinuteSecondMillis

Introduction

In this page you can find the example usage for org.joda.time.format ISODateTimeFormat dateHourMinuteSecondMillis.

Prototype

public static DateTimeFormatter dateHourMinuteSecondMillis() 

Source Link

Document

Returns a formatter that combines a full date, two digit hour of day, two digit minute of hour, two digit second of minute, and three digit fraction of second (yyyy-MM-dd'T'HH:mm:ss.SSS).

Usage

From source file:org.lable.rfc3881.auditlogger.api.Event.java

License:Apache License

@Override
public String toString() {
    return "ID:          " + getId() + "\nAction:      " + getAction().getDisplayName() + "\nAt:          "
            + getHappenedAt().toString(ISODateTimeFormat.dateHourMinuteSecondMillis().withZoneUTC()) + " (UTC)"
            + "\nOutcome:     " + getOutcome().getDisplayName() + "\nType:        " + getTypes();
}