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

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

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

class HourMinuteZone implements ITimeOfDay {
  final var _hour: Integer as Hour
  final var _min: Integer as Min
  final var _zoneId: ZoneId as ZoneId

  construct( zoneId: ZoneId, hour: Integer, min: Integer ) {
    _zoneId = zoneId
    _hour = hour
    _min = min
  }
  
  @BinderSeparators( :required = {":"} )
  function postfixBind( comp: Integer ) : HourMinuteSecondZone {
    return new( _zoneId, comp, _hour, _min )
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy