Android Little Endian Convert charAsLittleEnd(char val)

Here you can find the source of charAsLittleEnd(char val)

Description

Converts a char value to an array in little-endian format.

Declaration

public static byte[] charAsLittleEnd(char val) 

Method Source Code

//package com.java2s;

public class Main {
    /**/*from w w w.  ja  v a 2s  .  c o  m*/
     * Converts a char value to an array in little-endian format.
     * \param val The value to be converted.
     * \returns A byte array with the value in little-endian format.
     **/
    public static byte[] charAsLittleEnd(char val) {
        return shortAsLittleEnd((short) val);
    }

    /**
     * Convert a char value into an array in little-endian format, copying the
     * result in the passed array at the point especified.
     * \param a The array where the converted value should be copied.
     * \param i The starting point, int the array \a a where the copy should
     * start.
     * \param v The value to be converted and copied.
     * \returns \a a.
     **/
    public static byte[] charAsLittleEnd(byte[] a, int i, char v) {
        a[i + 1] = (byte) (0xFF & (v >> 8));
        a[i + 0] = (byte) (0xFF & v);
        return a;
    }

    /**
     * Converts a short value to an array in little-endian format.
     * \param val The value to be converted.
     * \returns A byte array with the value in little-endian format.
     **/
    public static byte[] shortAsLittleEnd(short val) {
        byte[] array = new byte[2];
        return shortAsLittleEnd(array, 0, val);
    }

    /**
     * Convert a short value into an array in little-endian format, copying the
     * result in the passed array at the point especified.
     * \param a The array where the converted value should be copied.
     * \param i The starting point, int the array \a a where the copy should
     * start.
     * \param v The value to be converted and copied.
     * \returns \a a.
     **/
    public static byte[] shortAsLittleEnd(byte[] a, int i, short v) {
        a[i + 1] = (byte) (0xFF & (v >> 8));
        a[i + 0] = (byte) (0xFF & v);
        return a;
    }
}

Related

  1. charAsLittleEnd(byte[] a, int i, char v)
  2. intAsLittleEnd(byte[] a, int i, int v)
  3. intAsLittleEnd(int val)
  4. longAsLittleEnd(byte[] a, int i, long v)
  5. longAsLittleEnd(long val)