https://github.com/atsushi130/quarterrrule
https://github.com/atsushi130/quarterrrule
kotlin quarter rrule
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/atsushi130/quarterrrule
- Owner: atsushi130
- License: apache-2.0
- Created: 2017-11-19T02:55:03.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-11-19T03:00:49.000Z (over 7 years ago)
- Last Synced: 2025-01-19T22:39:58.687Z (4 months 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
[](./license-apache.md)
[](https://github.com/atsushi130/QuarterRRule.git)
## 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
}
}
```