Java org.joda.time MutableInterval fields, constructors, methods, implement or subclass

Example usage for Java org.joda.time MutableInterval fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.joda.time MutableInterval.

The text is from its open source code.

Subclass

org.joda.time.MutableInterval has subclasses.
Click this link to see all its subclasses.

Constructor

MutableInterval(long startInstant, long endInstant)
Constructs an interval from a start and end instant with the ISO default chronology.
MutableInterval(ReadableInstant start, ReadableInstant end)
Constructs an interval from a start and end instant.
MutableInterval(ReadableInstant start, ReadableDuration duration)
Constructs an interval from a start instant and a duration.
MutableInterval(ReadableDuration duration, ReadableInstant end)
Constructs an interval from a millisecond duration and an end instant.
MutableInterval(ReadableInstant start, ReadablePeriod period)
Constructs an interval from a start instant and a time period.
MutableInterval(ReadablePeriod period, ReadableInstant end)
Constructs an interval from a time period and an end instant.
MutableInterval(Object interval, Chronology chronology)
Constructs a time interval by converting or copying from another object, overriding the chronology.