Searched refs:totalSeconds (Results 1 – 1 of 1) sorted by relevance
159 private final int totalSeconds; field in ZoneOffset313 int totalSeconds = totalSeconds(hours, minutes, seconds); in ofHoursMinutesSeconds() local314 return ofTotalSeconds(totalSeconds); in ofHoursMinutesSeconds()394 private static int totalSeconds(int hours, int minutes, int seconds) { in totalSeconds() method in ZoneOffset408 public static ZoneOffset ofTotalSeconds(int totalSeconds) { in ofTotalSeconds() argument409 if (totalSeconds < -MAX_SECONDS || totalSeconds > MAX_SECONDS) { in ofTotalSeconds()412 if (totalSeconds % (15 * SECONDS_PER_MINUTE) == 0) { in ofTotalSeconds()413 Integer totalSecs = totalSeconds; in ofTotalSeconds()416 result = new ZoneOffset(totalSeconds); in ofTotalSeconds()423 return new ZoneOffset(totalSeconds); in ofTotalSeconds()[all …]