All Downloads are FREE. Search and download functionalities are using the official Maven repository.

space.chensheng.wsmessenger.common.util.ByteUtil Maven / Gradle / Ivy

The newest version!
package space.chensheng.wsmessenger.common.util;

public class ByteUtil {
	public static int toUnsignedInt(byte x) {
        return ((int) x) & 0xff;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy