All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.nscala_time.time.RichDate.scala Maven / Gradle / Ivy

The newest version!
package com.github.nscala_time.time

import java.util.Date
import org.joda.time._
import com.github.nscala_time.PimpedType

class RichDate(val underlying: Date) extends AnyVal with PimpedType[Date] {

  def toLocalDateTime: LocalDateTime = StaticLocalDateTime.fromDateFields(underlying)

  def toLocalDate: LocalDate = StaticLocalDate.fromDateFields(underlying)

  def toLocalTime: LocalTime = StaticLocalTime.fromDateFields(underlying)

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy