localize

fun Duration.localize(options: DurationOptions = DurationOptions(), locale: PlatformLocale = getDefaultLocale()): String

Localizes this Duration with the given options in the given locale.

See also


fun LocalDate.localize(options: DateStyleOptions = Defaults.DATE, locale: PlatformLocale = getDefaultLocale()): String

Localizes this LocalDate with the given options in the given locale.

See also


fun LocalDateTime.localize(options: LocalDateTimeOptions = LocalDateTimeOptions(), locale: PlatformLocale = getDefaultLocale()): String

Localizes this LocalDateTime with the given options in the given locale.

See also


fun LocalTime.localize(options: LocalTimeOptions<*> = LocalTimeOptions(Defaults.LOCAL_TIME), locale: PlatformLocale = getDefaultLocale()): String
fun LocalTime.localize(options: LocalTimeStyleOptions, locale: PlatformLocale = getDefaultLocale()): String

Localizes this LocalTime with the given options in the given locale.

See also


fun YearMonth.localize(options: YearMonthOptions = YearMonthOptions(), locale: PlatformLocale = getDefaultLocale()): String

Localizes this YearMonth with the given options in the given locale.

See also


fun Zoned<Instant>.localize(options: ZonedInstantOptions = ZonedInstantOptions(), locale: PlatformLocale = getDefaultLocale()): String

Localizes this Instant at this TimeZone with the given options in the given locale.

See also


fun Zoned<LocalDate>.localize(options: ZonedDateOptions = ZonedDateOptions(), locale: PlatformLocale = getDefaultLocale()): String

Localizes this LocalDate with the given options in the given locale.

See also


fun Zoned<YearMonth>.localize(options: ZonedYearMonthOptions = ZonedYearMonthOptions(), locale: PlatformLocale = getDefaultLocale()): String

Localizes this YearMonth with the given options in the given locale.

See also