Java ByteBuffer Put putRange(ByteBuffer buffer, int start, int end, byte b)

Here you can find the source of putRange(ByteBuffer buffer, int start, int end, byte b)

Description

Sets all bytes in the given byte range to the given byte value.

License

Open Source License

Declaration

public static void putRange(ByteBuffer buffer, int start, int end, byte b) 

Method Source Code

//package com.java2s;
/*/*from   w  w  w .  ja v a  2s .co m*/
Copyright (c) 2005 Health Market Science, Inc.
    
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
    
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Lesser General Public License for more details.
    
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307
USA
    
You can contact Health Market Science at info@healthmarketscience.com
or at the following address:
    
Health Market Science
2700 Horizon Drive
Suite 200
King of Prussia, PA 19406
*/

import java.nio.ByteBuffer;

public class Main {
    /**
     * Sets all bytes in the given byte range to the given byte value.
     */
    public static void putRange(ByteBuffer buffer, int start, int end, byte b) {
        for (int i = start; i < end; ++i) {
            buffer.put(i, b);
        }
    }
}

Related

  1. putNAL(ByteBuffer codecPrivate, ByteBuffer byteBuffer, int nalType)
  2. putNullTerminal(ByteBuffer buffer)
  3. putObject(ByteBuffer byteBuffer, Object object)
  4. putObject(final ByteBuffer buffer, Serializable o)
  5. putQuickchatParam(ByteBuffer buf, long param, int size)
  6. putRGBfromHSB(final ByteBuffer pixels, final float[] hsb, int pixelSize)
  7. putStr(ByteBuffer buff, String str)
  8. putString(@Nullable final String s, @Nonnull final ByteBuffer dst)
  9. putString(ByteBuffer bb, String s)