Java ByteBuffer Set setByteOrder(ByteBuffer buffer)

Here you can find the source of setByteOrder(ByteBuffer buffer)

Description

set Byte Order

License

Apache License

Declaration

public static void setByteOrder(ByteBuffer buffer) 

Method Source Code

//package com.java2s;
/*/*w ww.j  a  va  2s .  co  m*/
 * Copyright 2011 Jonathan Anderson
 *
 * 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.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

import java.nio.ByteBuffer;
import java.nio.ByteOrder;

public class Main {
    public static void setByteOrder(ByteBuffer buffer) {
        buffer.order(ByteOrder.LITTLE_ENDIAN);
    }
}

Related

  1. reset(int offset, ByteBuffer b)
  2. resetBit(ByteBuffer in, int pos)
  3. set0byte(MappedByteBuffer mem, byte value)
  4. set24BitInt(ByteBuffer buffer, int value)
  5. setBatch(ByteBuffer bb, long batchId)
  6. setBytesAtOffset(ByteBuffer buffer, int offset, int length, byte[] data)
  7. setCell(ByteBuffer buffer, int cellIndex, int cellbytes)
  8. setCreationTime(ByteBuffer buf, Date date)
  9. setFree(int frameIx, int offset, boolean free, ByteBuffer[] frames)