Creates a new Timestamp, precise to the year, with unknown local offset. This is equivalent to the corresponding Ion value YYYYT.
(int zyear)
| 458 | * This is equivalent to the corresponding Ion value {@code YYYYT}. |
| 459 | */ |
| 460 | private Timestamp(int zyear) |
| 461 | { |
| 462 | this(Precision.YEAR, zyear, NO_MONTH, NO_DAY, NO_HOURS, NO_MINUTES, NO_SECONDS, NO_FRACTIONAL_SECONDS, UNKNOWN_OFFSET, APPLY_OFFSET_NO, CHECK_FRACTION_NO); |
| 463 | } |
| 464 | |
| 465 | /** |
| 466 | * Creates a new Timestamp, precise to the month, with unknown local offset. |
nothing calls this directly
no test coverage detected