All Downloads are FREE. Search and download functionalities are using the official Maven repository.

gw.util.time.HourMinuteSecondMilliZone.gs Maven / Gradle / Ivy

There is a newer version: 1.18.2
Show newest version
package gw.util.time
uses java.time.ZoneId

class HourMinuteSecondMilliZone implements ITimeOfDay {
  final var _hour: Integer as Hour
  final var _min: Integer as Min
  final var _sec: Integer as Sec
  final var _milli: Integer as Milli
  final var _zoneId: ZoneId as ZoneId

  construct( zoneId: ZoneId, hour: Integer, min: Integer, sec: Integer, milli: Integer ) {
    _zoneId = zoneId
    _hour = hour
    _min = min
    _sec = sec
    _milli = milli
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy