Here you can find the source of ensureCapacity(ByteBuffer existingBuffer, int newLength)
Parameter | Description |
---|---|
existingBuffer | ByteBuffer capacity to check |
newLength | new length for the ByteBuffer. returns ByteBuffer with a minimum capacity of new length |
public static ByteBuffer ensureCapacity(ByteBuffer existingBuffer, int newLength)
//package com.java2s; /**/*from w w w. j a v a 2 s.c o m*/ * Copyright 2016 LinkedIn Corp. All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. */ import java.nio.ByteBuffer; public class Main { /** * Make sure that the ByteBuffer capacity is equal to or greater than the expected length. * If not, create a new ByteBuffer of expected length and copy contents from previous ByteBuffer to the new one * @param existingBuffer ByteBuffer capacity to check * @param newLength new length for the ByteBuffer. * returns ByteBuffer with a minimum capacity of new length */ public static ByteBuffer ensureCapacity(ByteBuffer existingBuffer, int newLength) { if (newLength > existingBuffer.capacity()) { ByteBuffer newBuffer = ByteBuffer.allocate(newLength); existingBuffer.flip(); newBuffer.put(existingBuffer); return newBuffer; } return existingBuffer; } }