commonMain.extensions.DayOfWeek.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fluid-stdlib-macosx64 Show documentation
Show all versions of fluid-stdlib-macosx64 Show documentation
Potentially useful Kotlin standard library additions
The newest version!
package com.github.fluidsonic.fluid.stdlib
import com.github.fluidsonic.fluid.time.*
expect fun DayOfWeek.displayName(locale: Locale, format: DayOfWeekFormat = DayOfWeekFormat.full): String
enum class DayOfWeekFormat {
character, // M T W T F S S
characterStandalone, // M T W T F S S
short, // Mo Tu We Th Fr Sa Su
shortStandalone, // Mo Tu We Th Fr Sa Su
medium, // Mon Tue Wed Thu Fri Sat Sun
mediumStandalone, // Mon Tue Wed Thu Fri Sat Sun
full, // Monday Tuesday Wednesday Thursday Friday Saturday Sunday
fullStandalone // Monday Tuesday Wednesday Thursday Friday Saturday Sunday
}