8285977: Add links to IEEE 754 specification

Reviewed-by: jjg, iris, bpb
This commit is contained in:
Joe Darcy 2022-05-03 16:58:19 +00:00
parent 4434c7df03
commit 3cbf769f55
7 changed files with 22 additions and 1 deletions

View file

@ -293,6 +293,9 @@ import java.util.Objects;
* @see RoundingMode
* @see java.util.SortedMap
* @see java.util.SortedSet
* @see <a href="https://standards.ieee.org/ieee/754/6210/">
* <cite>IEEE Standard for Floating-Point Arithmetic</cite></a>
*
* @author Josh Bloch
* @author Mike Cowlishaw
* @author Joseph D. Darcy

View file

@ -48,6 +48,9 @@ import java.io.*;
*
* @see BigDecimal
* @see RoundingMode
* @see <a href="https://standards.ieee.org/ieee/754/6210/">
* <cite>IEEE Standard for Floating-Point Arithmetic</cite></a>
*
* @author Mike Cowlishaw
* @author Joseph D. Darcy
* @since 1.5

View file

@ -1,5 +1,5 @@
/*
* Copyright (c) 2003, 2021, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2003, 2022, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -96,6 +96,9 @@ package java.math;
*
* @see BigDecimal
* @see MathContext
* @see <a href="https://standards.ieee.org/ieee/754/6210/">
* <cite>IEEE Standard for Floating-Point Arithmetic</cite></a>
*
* @author Josh Bloch
* @author Mike Cowlishaw
* @author Joseph D. Darcy