Package de.mhus.lib.core.util
Class Bits
- java.lang.Object
-
- de.mhus.lib.core.util.Bits
-
public class Bits extends Object
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static booleangetBoolean(byte[] abyte0, int i)static chargetChar(byte[] abyte0, int i)static doublegetDouble(byte[] abyte0, int i)static floatgetFloat(byte[] abyte0, int i)static intgetInt(byte[] abyte0, int i)static longgetLong(byte[] abyte0, int i)static shortgetShort(byte[] abyte0, int i)static voidputBoolean(byte[] abyte0, int i, boolean flag)static voidputChar(byte[] abyte0, int i, char c)static voidputDouble(byte[] abyte0, int i, double d)static voidputFloat(byte[] abyte0, int i, float f)static voidputInt(byte[] abyte0, int i, int j)static voidputLong(byte[] abyte0, int i, long l)static voidputShort(byte[] abyte0, int i, short word0)
-
-
-
Method Detail
-
getBoolean
public static boolean getBoolean(byte[] abyte0, int i)
-
getChar
public static char getChar(byte[] abyte0, int i)
-
getShort
public static short getShort(byte[] abyte0, int i)
-
getInt
public static int getInt(byte[] abyte0, int i)
-
getFloat
public static float getFloat(byte[] abyte0, int i)
-
getLong
public static long getLong(byte[] abyte0, int i)
-
getDouble
public static double getDouble(byte[] abyte0, int i)
-
putBoolean
public static void putBoolean(byte[] abyte0, int i, boolean flag)
-
putChar
public static void putChar(byte[] abyte0, int i, char c)
-
putShort
public static void putShort(byte[] abyte0, int i, short word0)
-
putInt
public static void putInt(byte[] abyte0, int i, int j)
-
putFloat
public static void putFloat(byte[] abyte0, int i, float f)
-
putLong
public static void putLong(byte[] abyte0, int i, long l)
-
putDouble
public static void putDouble(byte[] abyte0, int i, double d)
-
-