Java ByteBuffer Size sizeOfValue(ByteBuffer bytes)

Here you can find the source of sizeOfValue(ByteBuffer bytes)

Description

size Of Value

License

Apache License

Declaration

public static int sizeOfValue(ByteBuffer bytes) 

Method Source Code

//package com.java2s;
/*/*ww  w. j a v a 2s  .co  m*/
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you 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.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

import java.nio.ByteBuffer;

public class Main {
    public static int sizeOfValue(byte[] bytes) {
        return 4 + (bytes == null ? 0 : bytes.length);
    }

    public static int sizeOfValue(ByteBuffer bytes) {
        return 4 + (bytes == null ? 0 : bytes.remaining());
    }

    public static int sizeOfValue(int valueSize) {
        return 4 + (valueSize < 0 ? 0 : valueSize);
    }
}

Related

  1. rightSize(ByteBuffer in)
  2. sameSize(BufferedImage im1, BufferedImage im2)
  3. scanForDuplicates(BufferedImage leftImage, BufferedImage[] images, int i, int[] order, int width, int height)
  4. sizeOfBytes(ByteBuffer bytes)
  5. sizeOfBytesMap(Map m)
  6. sizeP(ByteBuffer bb)
  7. storeInt(ByteBuffer b, int fromIndex, int size, int value)
  8. tileImage(Graphics g, BufferedImage tileImage, int width, int height)
  9. xysizeIsWhite(BufferedImage img, int x, int y)