(String value, char ch)
| 45 | } |
| 46 | |
| 47 | private static String[] split(String value, char ch) { |
| 48 | int pos = value.indexOf(ch); |
| 49 | return new String[] { value.substring(0, pos), value.substring(pos + 1) }; |
| 50 | } |
| 51 | |
| 52 | public static ZoneOffset ofHours(int hours) { |
| 53 | return ofTotalSeconds(hours * 3600); |