Example usage for org.joda.time.base BaseDateTime toString

List of usage examples for org.joda.time.base BaseDateTime toString

Introduction

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

Prototype

public String toString(String pattern) 

Source Link

Document

Output the instant using the specified format pattern.

Usage

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

License:Apache License

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