FloatBuffer rewind() methods in Java with Examples Last Updated : 10 Sep, 2019 Summarize Comments Improve Suggest changes Share Like Article Like Report The rewind() method of java.nio.FloatBuffer Class is used to rewind this buffer. This method sets the position to zero and limit remains unaffected and if there is any position which was previously marked, will be discarded. This method should be invoked when there is any necessity of sequence of channel-write or get operations. It means that if buffer data is already written then it is needed to be copied into another array. For example: out.write(buf); // Writes the remaining data buf.rewind(); // Rewind the buffer buf.get(array); // Copy data into array Syntax: public final FloatBuffer rewind() Parameters: The method does not take any parameters. Return Value: The method returns this buffer. Below are the examples to illustrate the rewind() method: Examples 1: Java // Java program to demonstrate // rewind() method import java.nio.*; import java.util.*; public class GFG { public static void main(String[] args) { // defining and allocating FloatBuffer // using allocate() method FloatBuffer floatBuffer = FloatBuffer.allocate(4); // put char value in FloatBuffer // using put() method floatBuffer.put(10.5f); floatBuffer.put(20.5f); // print the float buffer System.out.println("Buffer before operation: " + Arrays.toString( floatBuffer.array()) + "\nPosition: " + floatBuffer.position() + "\nLimit: " + floatBuffer.limit()); // rewind the Buffer // using rewind() method floatBuffer.rewind(); // print the floatbuffer System.out.println("\nBuffer after operation: " + Arrays.toString( floatBuffer.array()) + "\nPosition: " + floatBuffer.position() + "\nLimit: " + floatBuffer.limit()); } } Output: Buffer before operation: [10.5, 20.5, 0.0, 0.0] Position: 2 Limit: 4 Buffer after operation: [10.5, 20.5, 0.0, 0.0] Position: 0 Limit: 4 Examples 2: Java // Java program to demonstrate // rewind() method import java.nio.*; import java.util.*; public class GFG { public static void main(String[] args) { // defining and allocating FloatBuffer // using allocate() method FloatBuffer floatBuffer = FloatBuffer.allocate(5); // put float value in floatBuffer // using put() method floatBuffer.put(10.5f); floatBuffer.put(20.5f); floatBuffer.put(30.5f); // mark will be going to discarded by rewind() floatBuffer.mark(); // print the buffer System.out.println("Buffer before operation: " + Arrays.toString( floatBuffer.array()) + "\nPosition: " + floatBuffer.position() + "\nLimit: " + floatBuffer.limit()); // Rewind the Buffer // using rewind() method floatBuffer.rewind(); // print the buffer System.out.println("\nBuffer after operation: " + Arrays.toString( floatBuffer.array()) + "\nPosition: " + floatBuffer.position() + "\nLimit: " + floatBuffer.limit()); } } Output: Buffer before operation: [10.5, 20.5, 30.5, 0.0, 0.0] Position: 3 Limit: 5 Buffer after operation: [10.5, 20.5, 30.5, 0.0, 0.0] Position: 0 Limit: 5 Reference: https://docs.oracle.com/javase/9/docs/api/java/nio/FloatBuffer.html#rewind-- Comment More infoAdvertise with us Next Article FloatBuffer flip() methods in Java with Examples R rohitprasad3 Follow Improve Article Tags : Java Java-Functions Java-FloatBuffer Java-NIO package Practice Tags : Java Similar Reads FloatBuffer put() methods in Java with Examples put(float f) The put(float f) method of java.nio.FloatBuffer Class is used to write the given float into the newly created float buffer at the current position, and then increments the position. Syntax : public abstract FloatBuffer put(float f) Parameters: This method takes the float value f as a pa 6 min read FloatBuffer slice() method in Java with Examples The slice() method of java.nio.FloatBuffer Class is used to creates a new float buffer whose content is a shared subsequence of the given buffer's content.The content of the new buffer will start at this buffer's current position. Changes to this buffer's content will be visible in the new buffer, a 3 min read FloatBuffer get() methods in Java with Examples get() The get() method of java.nio.FloatBuffer Class is used to reads the float at the given buffer's current position, and then increments the position. Syntax : public abstract float get() Return Value: This method returns the float value at the buffer's current position. Throws: This method throw 5 min read FloatBuffer flip() methods in Java with Examples The flip() method of java.nio.FloatBuffer Class is used to flip this buffer. By flipping this buffer, it meant that the buffer will be trimmed to the current position and then the position will be changed to zero. During this process, if any mark is there on the buffer, then that mark will be automa 2 min read FloatBuffer wrap() method in Java with Examples wrap(float[] array) The wrap() method of java.nio.FloatBuffer Class is used to wraps a float array into a buffer. The new buffer will be backed by the given float array; that is, modifications to the buffer will cause the array to be modified and vice versa. The new buffer's capacity and limit will 4 min read FloatBuffer equals() method in Java with Examples The equals() method of java.nio.FloatBuffer Class is used to check whether or not the given buffer is equal to another object. Two float buffers are equal if, and only if, They have the same element type, They have the same number of remaining elements, and The two sequences of remaining elements, c 4 min read Like