Example usage for org.joda.time DateMidnight parse

List of usage examples for org.joda.time DateMidnight parse

Introduction

In this page you can find the example usage for org.joda.time DateMidnight parse.

Prototype

@FromString
public static DateMidnight parse(String str) 

Source Link

Document

Parses a DateMidnight from the specified string.

Usage

From source file:de.cpoepke.demos.neo4j.querydsl.converter.StringToDateMidnightConverter.java

License:Open Source License

@Override
public DateMidnight convert(String source) {
    return DateMidnight.parse(source);
}

From source file:griffon.plugins.jodatime.JodatimeExtension.java

License:Apache License

public static DateMidnight toDateMidnight(String string) {
    return DateMidnight.parse(string);
}