Example usage for org.joda.time MutablePeriod parse

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

Introduction

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

Prototype

@FromString
public static MutablePeriod parse(String str) 

Source Link

Document

Parses a MutablePeriod from the specified string.

Usage

From source file:TVShowTimelineMaker.util.XML.MutablePeriodXMLWriter.java

@Override
public MutablePeriod readElements(Element root) {
    MutablePeriod newMutablePeriod = MutablePeriod.parse(root.getTextNormalize());
    return newMutablePeriod;
}