Package com.mchange.lang
Class ShortUtils
- java.lang.Object
-
- com.mchange.lang.ShortUtils
-
public class ShortUtils extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description static int
UNSIGNED_MAX_VALUE
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static byte[]
byteArrayFromShort(short s)
static short
shortFromByteArray(byte[] bytes, int offset)
static void
shortIntoByteArray(short s, int offset, byte[] bytes)
static int
toUnsigned(short s)
-
-
-
Field Detail
-
UNSIGNED_MAX_VALUE
public static final int UNSIGNED_MAX_VALUE
- See Also:
- Constant Field Values
-
-
Method Detail
-
shortFromByteArray
public static short shortFromByteArray(byte[] bytes, int offset)
-
byteArrayFromShort
public static byte[] byteArrayFromShort(short s)
-
shortIntoByteArray
public static void shortIntoByteArray(short s, int offset, byte[] bytes)
-
toUnsigned
public static int toUnsigned(short s)
-
-