Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/atsushi130/quarterrrule
https://github.com/atsushi130/quarterrrule
kotlin quarter rrule
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/atsushi130/quarterrrule
- Owner: atsushi130
- License: apache-2.0
- Created: 2017-11-19T02:55:03.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2017-11-19T03:00:49.000Z (about 7 years ago)
- Last Synced: 2023-08-17T11:38:22.957Z (over 1 year ago)
- Topics: kotlin, quarter, rrule
- Language: Kotlin
- Size: 51.8 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: license-apache.md
Awesome Lists containing this project
README
# Quarter RRule
[![apache licensed](https://img.shields.io/badge/License-Apache_2.0-d94c32.svg)](./license-apache.md)
[![quarter rrule](https://img.shields.io/badge/Kotlin-QuarterRRue-3B5998.svg)](https://github.com/atsushi130/QuarterRRule.git)
![kotlin](https://img.shields.io/badge/Language-Kotlin-f88909.svg)## Usage
```kotlin
import quarter.rrule.QuarterRRule
import org.joda.time.LocalDateclass Sample(@Autowired private val quarterRRule: QuarterRRule) {
fun sample() {
val timestamp = this.quarterRRule.findTimeStampBy(LocalDate(2017, 1, 2))
println(timestamp) // 2017/01/01
}
}
```