Here you can find the source of asUnsignedShort(byte signedValue)
Parameter | Description |
---|---|
signedValue | the value, interpreted as unsigned |
static short asUnsignedShort(byte signedValue)
//package com.java2s; // Licensed under the MIT license. See LICENSE file in the project root for full license information. public class Main { /**/*w w w . ja v a 2 s . c om*/ * Converts an unsigned 8-bit value (represented by the signed byte data type) to a 16-bit short value. * The result represents a non-negative value within the range of 8-bit unsigned integers. * * @param signedValue the value, interpreted as unsigned * @return an int containing the unsigned 8-bit value */ static short asUnsignedShort(byte signedValue) { return (short) (signedValue & 0xFF); } }