Searched refs:totalSeconds (Results 1 – 1 of 1) sorted by relevance
158 private final int totalSeconds; field in ZoneOffset312 int totalSeconds = totalSeconds(hours, minutes, seconds); in ofHoursMinutesSeconds() local313 return ofTotalSeconds(totalSeconds); in ofHoursMinutesSeconds()393 private static int totalSeconds(int hours, int minutes, int seconds) { in totalSeconds() method in ZoneOffset407 public static ZoneOffset ofTotalSeconds(int totalSeconds) { in ofTotalSeconds() argument408 if (Math.abs(totalSeconds) > MAX_SECONDS) { in ofTotalSeconds()411 if (totalSeconds % (15 * SECONDS_PER_MINUTE) == 0) { in ofTotalSeconds()412 Integer totalSecs = totalSeconds; in ofTotalSeconds()415 result = new ZoneOffset(totalSeconds); in ofTotalSeconds()422 return new ZoneOffset(totalSeconds); in ofTotalSeconds()[all …]