OffsetDateTime hashCode()
returns a hash code for this date-time.
hashCode
has the following syntax.
public int hashCode()
The following example shows how to use hashCode
.
import java.time.OffsetDateTime; public class Main { public static void main(String[] args) { OffsetDateTime o = OffsetDateTime.MAX; System.out.println(o.hashCode()); } }
The code above generates the following result.