Java ByteBuffer Put putUUID(ByteBuffer bytes, UUID uuid)

Here you can find the source of putUUID(ByteBuffer bytes, UUID uuid)

Description

put UUID

License

Open Source License

Declaration

public static ByteBuffer putUUID(ByteBuffer bytes, UUID uuid) throws IOException 

Method Source Code


//package com.java2s;
/*/*from   w w w  .  j  a va 2s .  com*/
Copyright 2011 Semantic Discovery, Inc. (www.semanticdiscovery.com)
    
This file is part of the Semantic Discovery Toolkit.
    
The Semantic Discovery Toolkit 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 3 of the License, or
(at your option) any later version.
    
The Semantic Discovery Toolkit 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 The Semantic Discovery Toolkit.  If not, see <http://www.gnu.org/licenses/>.
*/

import java.nio.ByteBuffer;
import java.io.IOException;
import java.util.UUID;

public class Main {
    public static ByteBuffer putUUID(ByteBuffer bytes, UUID uuid) throws IOException {
        if (bytes.remaining() < 16)
            throw new IOException("not enough space in buffer to write UUID value!");

        long msb = uuid.getMostSignificantBits();
        long lsb = uuid.getLeastSignificantBits();

        bytes.putLong(msb);
        bytes.putLong(lsb);
        return bytes;
    }

    public static ByteBuffer putUUID(ByteBuffer bytes, int pos, UUID uuid) throws IOException {
        if ((pos + 16) > bytes.limit())
            throw new IOException("not enough space in buffer to write UUID value!");

        long msb = uuid.getMostSignificantBits();
        long lsb = uuid.getLeastSignificantBits();

        bytes.putLong(pos, msb);
        bytes.putLong(pos + 8, lsb);
        return bytes;
    }
}

Related

  1. putUInt32(ByteBuffer buffer, long value)
  2. putUnsignedByte(ByteBuffer bb, int value)
  3. putUnsignedInt(ByteBuffer buffer, long value)
  4. putUnsignedInt(final ByteBuffer dst, final long value)
  5. putUnsignedShort(ByteBuffer bytes, int value)
  6. putVarint(ByteBuffer buffer, long number, int byteSize)
  7. putVInt(ByteBuffer b, int i)
  8. putWhatFits(ByteBuffer dest, ByteBuffer src)
  9. putWithChecksum(ByteBuffer buffer, int value, Adler32 checksum)