//JAVA TO C# CONVERTER WARNING: Method 'throws' clauses are not available in C#:
//ORIGINAL LINE: public final void writeTime(java.time.OffsetTime offsetTime) throws E
        public override void WriteTime(OffsetTime offsetTime)
        {
            long nanosOfDayUTC = TemporalUtil.getNanosOfDayUTC(offsetTime);
            int  offsetSeconds = offsetTime.Offset.TotalSeconds;

            WriteTime(nanosOfDayUTC, offsetSeconds);
        }
Esempio n. 2
0
 private TimeValue(OffsetTime value)
 {
     this._value         = value;
     this._nanosOfDayUTC = TemporalUtil.getNanosOfDayUTC(this._value);
 }