MCPcopy Create free account
hub / github.com/amazon-ion/ion-java / getMinute

Method getMinute

src/main/java/com/amazon/ion/Timestamp.java:1806–1815  ·  view source on GitHub ↗

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

()

Source from the content-addressed store, hash-verified

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 /**

Calls 2

make_localtimeMethod · 0.95
intValueMethod · 0.65