From 03087050019c295f9fc2a37a0d5f660859e748d2 Mon Sep 17 00:00:00 2001 From: Jonathan Peppers Date: Sat, 15 Aug 2026 10:01:11 -0500 Subject: [PATCH] Document ByteBuffer primitive reads Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> --- docs/xml/Java.Nio/ByteBuffer.xml | 42 +++++++++++++++++++++++++++----- 1 file changed, 36 insertions(+), 6 deletions(-) diff --git a/docs/xml/Java.Nio/ByteBuffer.xml b/docs/xml/Java.Nio/ByteBuffer.xml index 9caf641e1..35dd77b03 100644 --- a/docs/xml/Java.Nio/ByteBuffer.xml +++ b/docs/xml/Java.Nio/ByteBuffer.xml @@ -908,8 +908,13 @@ Returns the char at the current position and increases the position by 2. - To be added. + The char value at this buffer's current position. + + + Java documentation for java.nio.ByteBuffer.getChar(). + + Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License. @@ -1066,8 +1071,13 @@ Returns the double at the current position and increases the position by 8. - To be added. + The double value at this buffer's current position. + + + Java documentation for java.nio.ByteBuffer.getDouble(). + + Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License. @@ -1153,8 +1163,13 @@ Returns the float at the current position and increases the position by 4. - To be added. + The float value at this buffer's current position. + + + Java documentation for java.nio.ByteBuffer.getFloat(). + + Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License. @@ -1834,8 +1849,13 @@ Returns the int at the current position and increases the position by 4. - To be added. + The int value at this buffer's current position. + + + Java documentation for java.nio.ByteBuffer.getInt(). + + Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License. @@ -1926,8 +1946,13 @@ Returns the long at the current position and increases the position by 8. - To be added. + The long value at this buffer's current position. + + + Java documentation for java.nio.ByteBuffer.getLong(). + + Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License. @@ -3188,8 +3213,13 @@ Returns the short at the current position and increases the position by 2. - To be added. + The short value at this buffer's current position. + + + Java documentation for java.nio.ByteBuffer.getShort(). + + Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.