mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 06:45:07 +02:00
8295025: (bf) ByteBuffer "Access to binary data" section suggests putFloat is void
Reviewed-by: alanb
This commit is contained in:
parent
4224d45132
commit
18dd9ee701
1 changed files with 5 additions and 4 deletions
|
@ -150,10 +150,11 @@ import jdk.internal.util.ArraysSupport;
|
|||
* values, for example, this class defines:
|
||||
*
|
||||
* <blockquote><pre>
|
||||
* float {@link #getFloat()}
|
||||
* float {@link #getFloat(int) getFloat(int index)}
|
||||
* void {@link #putFloat(float) putFloat(float f)}
|
||||
* void {@link #putFloat(int,float) putFloat(int index, float f)}</pre></blockquote>
|
||||
* float {@link #getFloat()}
|
||||
* float {@link #getFloat(int) getFloat(int index)}
|
||||
* ByteBuffer {@link #putFloat(float) putFloat(float f)}
|
||||
* ByteBuffer {@link #putFloat(int,float) putFloat(int index, float f)}
|
||||
* </pre></blockquote>
|
||||
*
|
||||
* <p> Corresponding methods are defined for the types {@code char,
|
||||
* short, int, long}, and {@code double}. The index
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue