Class JdbcTime
Tetap teratur dengan koleksi
Simpan dan kategorikan konten berdasarkan preferensi Anda.
JdbcTime
Time
JDBC. Untuk dokumentasi class ini, lihat java.sql.Time
.
Metode
Metode | Jenis hasil yang ditampilkan | Deskripsi singkat |
after(when) | Boolean | Untuk dokumentasi metode ini, lihat
java.sql.Date#after(Date) . |
before(when) | Boolean | Untuk dokumentasi metode ini, lihat
java.sql.Date#before(Date) . |
getHours() | Integer | Untuk dokumentasi metode ini, lihat
java.sql.Date#getHours() . |
getMinutes() | Integer | Untuk dokumentasi metode ini, lihat
java.sql.Date#getMinutes() . |
getSeconds() | Integer | Untuk dokumentasi metode ini, lihat
java.sql.Date#getSeconds() . |
getTime() | Integer | Untuk dokumentasi metode ini, lihat
java.sql.Date#getTime() . |
setHours(hours) | void | Untuk dokumentasi metode ini, lihat
java.sql.Date#setHours(int) . |
setMinutes(minutes) | void | Untuk dokumentasi metode ini, lihat
java.sql.Date#setMinutes(int) . |
setSeconds(seconds) | void | Untuk dokumentasi metode ini, lihat
java.sql.Date#setSeconds(int) . |
setTime(milliseconds) | void | Untuk dokumentasi metode ini, lihat
java.sql.Time#setTime(long) . |
Dokumentasi mendetail
after(when)
Untuk dokumentasi metode ini, lihat
java.sql.Date#after(Date)
.
Parameter
Nama | Jenis | Deskripsi |
when | JdbcTime | Waktu yang akan dibandingkan. |
Pulang pergi
Boolean
— true
jika dan hanya jika waktu ini benar-benar lebih lambat dari waktu yang ditentukan sebagai
parameter; false
jika tidak.
before(when)
Untuk dokumentasi metode ini, lihat
java.sql.Date#before(Date)
.
Parameter
Nama | Jenis | Deskripsi |
when | JdbcTime | Waktu yang akan dibandingkan. |
Pulang pergi
Boolean
— true
jika dan hanya jika waktu ini benar-benar lebih awal dari waktu yang ditentukan sebagai
parameter; false
jika tidak.
getHours()
Untuk dokumentasi metode ini, lihat
java.sql.Date#getHours()
.
Pulang pergi
Integer
— Jam yang diwakili oleh objek ini; nilainya adalah angka (0 hingga 23) yang mewakili
jam dalam hari yang berisi atau dimulai dengan momen waktu yang diwakili oleh
objek ini, seperti yang ditafsirkan dalam zona waktu lokal.
getMinutes()
Untuk dokumentasi metode ini, lihat
java.sql.Date#getMinutes()
.
Pulang pergi
Integer
— Menit setelah jam yang diwakili oleh objek ini, seperti yang ditafsirkan dalam zona waktu lokal. Nilainya adalah angka antara 0 hingga 59 inklusif.
getSeconds()
Untuk dokumentasi metode ini, lihat
java.sql.Date#getSeconds()
.
Pulang pergi
Integer
— Detik setelah menit yang diwakili oleh objek ini, seperti yang ditafsirkan dalam zona waktu lokal. Nilainya adalah angka antara 0 hingga 61 inklusif, dengan 60 dan 61 hanya
mungkin untuk mesin yang memperhitungkan detik kabisat.
getTime()
Untuk dokumentasi metode ini, lihat
java.sql.Date#getTime()
.
Pulang pergi
Integer
— Jumlah milidetik sejak 1 Januari 1970, 00.00.00 GMT yang diwakili oleh objek waktu ini.
setHours(hours)
Untuk dokumentasi metode ini, lihat
java.sql.Date#setHours(int)
.
Parameter
Nama | Jenis | Deskripsi |
hours | Integer | Jam yang akan ditetapkan; objek ini diperbarui untuk mewakili titik waktu dalam
jam yang ditentukan, dengan tahun, bulan, tanggal, menit, dan detik yang sama seperti
sebelumnya, seperti yang ditafsirkan dalam zona waktu lokal. |
setMinutes(minutes)
Untuk dokumentasi metode ini, lihat
java.sql.Date#setMinutes(int)
.
Parameter
Nama | Jenis | Deskripsi |
minutes | Integer | Menit yang akan ditetapkan; objek ini diperbarui untuk mewakili titik waktu dalam
menit yang ditentukan dari jam, dengan tahun, bulan, tanggal, jam, dan detik yang sama seperti
sebelumnya, seperti yang ditafsirkan dalam zona waktu lokal. |
setSeconds(seconds)
Untuk dokumentasi metode ini, lihat
java.sql.Date#setSeconds(int)
.
Parameter
Nama | Jenis | Deskripsi |
seconds | Integer | Detik yang akan ditetapkan; objek ini diperbarui untuk mewakili titik waktu dalam
detik menit yang ditentukan, dengan tahun, bulan, tanggal, jam, dan menit yang sama
seperti sebelumnya, seperti yang ditafsirkan dalam zona waktu lokal. |
setTime(milliseconds)
Untuk dokumentasi metode ini, lihat
java.sql.Time#setTime(long)
.
Parameter
Nama | Jenis | Deskripsi |
milliseconds | Integer | Nilai waktu yang akan ditetapkan. Nilainya adalah milidetik sejak 1 Januari 1970,
00.00.00 GMT, sedangkan angka negatif adalah milidetik sebelum waktu tersebut. |
Kecuali dinyatakan lain, konten di halaman ini dilisensikan berdasarkan Lisensi Creative Commons Attribution 4.0, sedangkan contoh kode dilisensikan berdasarkan Lisensi Apache 2.0. Untuk mengetahui informasi selengkapnya, lihat Kebijakan Situs Google Developers. Java adalah merek dagang terdaftar dari Oracle dan/atau afiliasinya.
Terakhir diperbarui pada 2025-07-26 UTC.
[null,null,["Terakhir diperbarui pada 2025-07-26 UTC."],[[["\u003cp\u003e\u003ccode\u003eJdbcTime\u003c/code\u003e provides a JDBC representation of time, mirroring the functionality of \u003ccode\u003ejava.sql.Time\u003c/code\u003e.\u003c/p\u003e\n"],["\u003cp\u003eIt offers methods to compare times (\u003ccode\u003eafter\u003c/code\u003e, \u003ccode\u003ebefore\u003c/code\u003e), retrieve time components (\u003ccode\u003egetHours\u003c/code\u003e, \u003ccode\u003egetMinutes\u003c/code\u003e, \u003ccode\u003egetSeconds\u003c/code\u003e), and get the time in milliseconds (\u003ccode\u003egetTime\u003c/code\u003e).\u003c/p\u003e\n"],["\u003cp\u003eYou can modify the time using \u003ccode\u003esetHours\u003c/code\u003e, \u003ccode\u003esetMinutes\u003c/code\u003e, \u003ccode\u003esetSeconds\u003c/code\u003e, and \u003ccode\u003esetTime\u003c/code\u003e.\u003c/p\u003e\n"],["\u003cp\u003eDetailed documentation for each method is provided with links to the corresponding \u003ccode\u003ejava.sql.Time\u003c/code\u003e or \u003ccode\u003ejava.util.Date\u003c/code\u003e documentation.\u003c/p\u003e\n"]]],[],null,["# Class JdbcTime\n\nJdbcTime\n\nA JDBC `Time`. For documentation of this class, see [`java.sql.Time`](https://docs.oracle.com/javase/6/docs/api/java/sql/Time.html). \n\n### Methods\n\n| Method | Return type | Brief description |\n|---------------------------------------------|-------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| [after(when)](#after(JdbcTime)) | `Boolean` | For documentation of this method, see [`java.sql.Date#after(Date)`](https://docs.oracle.com/javase/6/docs/api/java/util/Date.html#after(java.util.Date)). |\n| [before(when)](#before(JdbcTime)) | `Boolean` | For documentation of this method, see [`java.sql.Date#before(Date)`](https://docs.oracle.com/javase/6/docs/api/java/util/Date.html#before(java.util.Date)). |\n| [getHours()](#getHours()) | `Integer` | For documentation of this method, see [` java.sql.Date#getHours()`](https://docs.oracle.com/javase/6/docs/api/java/util/Date.html#getHours()). |\n| [getMinutes()](#getMinutes()) | `Integer` | For documentation of this method, see [` java.sql.Date#getMinutes()`](https://docs.oracle.com/javase/6/docs/api/java/util/Date.html#getMinutes()). |\n| [getSeconds()](#getSeconds()) | `Integer` | For documentation of this method, see [` java.sql.Date#getSeconds()`](https://docs.oracle.com/javase/6/docs/api/java/util/Date.html#getSeconds()). |\n| [getTime()](#getTime()) | `Integer` | For documentation of this method, see [` java.sql.Date#getTime()`](https://docs.oracle.com/javase/6/docs/api/java/util/Date.html#getTime()). |\n| [setHours(hours)](#setHours(Integer)) | `void` | For documentation of this method, see [` java.sql.Date#setHours(int)`](https://docs.oracle.com/javase/6/docs/api/java/util/Date.html#setHours(int)). |\n| [setMinutes(minutes)](#setMinutes(Integer)) | `void` | For documentation of this method, see [` java.sql.Date#setMinutes(int)`](https://docs.oracle.com/javase/6/docs/api/java/util/Date.html#setMinutes(int)). |\n| [setSeconds(seconds)](#setSeconds(Integer)) | `void` | For documentation of this method, see [` java.sql.Date#setSeconds(int)`](https://docs.oracle.com/javase/6/docs/api/java/util/Date.html#setSeconds(int)). |\n| [setTime(milliseconds)](#setTime(Integer)) | `void` | For documentation of this method, see [` java.sql.Time#setTime(long)`](https://docs.oracle.com/javase/6/docs/api/java/sql/Time.html#setTime(long)). |\n\nDetailed documentation\n----------------------\n\n### `after(when)`\n\nFor documentation of this method, see [`java.sql.Date#after(Date)`](https://docs.oracle.com/javase/6/docs/api/java/util/Date.html#after(java.util.Date)).\n\n#### Parameters\n\n| Name | Type | Description |\n|--------|---------------|-----------------------|\n| `when` | [JdbcTime](#) | A time to compare to. |\n\n#### Return\n\n\n`Boolean` --- `true` if and only if this time is strictly later than the time specified as a\nparameter; `false` otherwise.\n\n*** ** * ** ***\n\n### `before(when)`\n\nFor documentation of this method, see [`java.sql.Date#before(Date)`](https://docs.oracle.com/javase/6/docs/api/java/util/Date.html#before(java.util.Date)).\n\n#### Parameters\n\n| Name | Type | Description |\n|--------|---------------|-----------------------|\n| `when` | [JdbcTime](#) | A time to compare to. |\n\n#### Return\n\n\n`Boolean` --- `true` if and only if this time is strictly earlier than the time specified as a\nparameter; `false` otherwise.\n\n*** ** * ** ***\n\n### `get``Hours()`\n\nFor documentation of this method, see [`\njava.sql.Date#getHours()`](https://docs.oracle.com/javase/6/docs/api/java/util/Date.html#getHours()).\n\n#### Return\n\n\n`Integer` --- The hour represented by this object; the value is a number (0 through 23) representing\nthe hour within the day that contains or begins with the instant in time represented by\nthis object, as interpreted in the local time zone.\n\n*** ** * ** ***\n\n### `get``Minutes()`\n\nFor documentation of this method, see [`\njava.sql.Date#getMinutes()`](https://docs.oracle.com/javase/6/docs/api/java/util/Date.html#getMinutes()).\n\n#### Return\n\n\n`Integer` --- The minutes past the hour represented by this object, as interpreted in the local time\nzone. The value is a number between 0 through 59 inclusive.\n\n*** ** * ** ***\n\n### `get``Seconds()`\n\nFor documentation of this method, see [`\njava.sql.Date#getSeconds()`](https://docs.oracle.com/javase/6/docs/api/java/util/Date.html#getSeconds()).\n\n#### Return\n\n\n`Integer` --- The seconds past the minute represented by this object, as interpreted in the local\ntime zone. The value is a number between 0 through 61 inclusive, whiere 60 and 61 are only\npossible for machines that take leap seconds into account.\n\n*** ** * ** ***\n\n### `get``Time()`\n\nFor documentation of this method, see [`\njava.sql.Date#getTime()`](https://docs.oracle.com/javase/6/docs/api/java/util/Date.html#getTime()).\n\n#### Return\n\n\n`Integer` --- The number of milliseconds since January 1, 1970, 00:00:00 GMT represented by this time\nobject.\n\n*** ** * ** ***\n\n### `set``Hours(hours)`\n\nFor documentation of this method, see [`\njava.sql.Date#setHours(int)`](https://docs.oracle.com/javase/6/docs/api/java/util/Date.html#setHours(int)).\n\n#### Parameters\n\n| Name | Type | Description |\n|---------|-----------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `hours` | `Integer` | The hour to set; this object is updated to represent a point in time within the specified hour of the day, with the year, month, date, minute, and second the same as before, as interpreted in the local time zone. |\n\n*** ** * ** ***\n\n### `set``Minutes(minutes)`\n\nFor documentation of this method, see [`\njava.sql.Date#setMinutes(int)`](https://docs.oracle.com/javase/6/docs/api/java/util/Date.html#setMinutes(int)).\n\n#### Parameters\n\n| Name | Type | Description |\n|-----------|-----------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `minutes` | `Integer` | The minutes to set; this object is updated to represent a point in time within the specified minute of the hour, with the year, month, date, hour, and second the same as before, as interpreted in the local time zone. |\n\n*** ** * ** ***\n\n### `set``Seconds(seconds)`\n\nFor documentation of this method, see [`\njava.sql.Date#setSeconds(int)`](https://docs.oracle.com/javase/6/docs/api/java/util/Date.html#setSeconds(int)).\n\n#### Parameters\n\n| Name | Type | Description |\n|-----------|-----------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `seconds` | `Integer` | The seconds to set; this object is updated to represent a point in time within the specified second of the minute, with the year, month, date, hour, and minute the same as before, as interpreted in the local time zone. |\n\n*** ** * ** ***\n\n### `set``Time(milliseconds)`\n\nFor documentation of this method, see [`\njava.sql.Time#setTime(long)`](https://docs.oracle.com/javase/6/docs/api/java/sql/Time.html#setTime(long)).\n\n#### Parameters\n\n| Name | Type | Description |\n|----------------|-----------|-------------------------------------------------------------------------------------------------------------------------------------------------|\n| `milliseconds` | `Integer` | The time value to set. The value is milliseconds since January 1, 1970, 00:00:00 GMT, while a negative number is milliseconds before that time. |"]]