Obtains a HybridDate representing a date in the British Cutover calendar system from the proleptic-year, month-of-year and day-of-month fields. This returns a HybridDate with the specified fields. Dates in the middle of the cutover gap, such as the 10th September 1752, will n
(int prolepticYear, int month, int dayOfMonth)
| 138 | * or if the day-of-month is invalid for the month-year |
| 139 | */ |
| 140 | public static HybridDate of(int prolepticYear, int month, int dayOfMonth) { |
| 141 | return HybridDate.create(prolepticYear, month, dayOfMonth); |
| 142 | } |
| 143 | |
| 144 | /** |
| 145 | * Obtains a {@code HybridDate} from a temporal object. |