VDateTime

open class VDateTime(val year: Int, val month: UInt, val day: UInt, val hour: UInt, val minute: UInt, val second: VDecimal, val timezoneOffset: Int? = null) : IDateTime(source)

Constructors

Link copied to clipboard
constructor(year: Int, month: UInt, day: UInt, hour: UInt, minute: UInt, second: VDecimal, timezoneOffset: Int? = null)

Properties

Link copied to clipboard
override val day: UInt

1..31 or further restricted on month

Link copied to clipboard
override val hour: UInt

0..23

Link copied to clipboard
override val minute: UInt

0..59

Link copied to clipboard
override val month: UInt

1..12

Link copied to clipboard
override val second: VDecimal

A decimal [0.0, 60.0>

Link copied to clipboard
override val timezoneOffset: Int? = null

Minutes offset from UTC

Link copied to clipboard
open override val xmlString: String
Link copied to clipboard
override val year: Int

any integer

Functions

Link copied to clipboard
open operator fun compareTo(other: IDateTime): Int
Link copied to clipboard
open fun dayFrag(): String
Link copied to clipboard
open fun hourFrag(): String
Link copied to clipboard
open fun instant(): Instant
Link copied to clipboard
open fun minuteFrag(): String
Link copied to clipboard
open fun monthFrag(): String
Link copied to clipboard
open fun secondFrag(): String
Link copied to clipboard
open fun timeZoneFrag(): String
Link copied to clipboard
open fun yearFrag(): String