Returns the minute of this Timestamp, in its local time. @return a number within the range [0, 59], in its local time; 0 is returned if the Timestamp isn't precise to the minute
()
| 1804 | * precise to the minute |
| 1805 | */ |
| 1806 | public int getMinute() |
| 1807 | { |
| 1808 | Timestamp adjusted = this; |
| 1809 | if (this._offset != null) { |
| 1810 | if (this._offset.intValue() != 0) { |
| 1811 | adjusted = make_localtime(); |
| 1812 | } |
| 1813 | } |
| 1814 | return adjusted._minute; |
| 1815 | } |
| 1816 | |
| 1817 | |
| 1818 | /** |