Example usage for org.joda.time ReadableDateTime toString

List of usage examples for org.joda.time ReadableDateTime toString

Introduction

In this page you can find the example usage for org.joda.time ReadableDateTime toString.

Prototype

String toString(String pattern) throws IllegalArgumentException;

Source Link

Document

Output the instant using the specified format pattern.

Usage

From source file:org.key2gym.client.util.DateTimeToStringConverter.java

License:Apache License

@Override
public String convertForward(ReadableDateTime value) {
    return value.toString(format);
}