Date Type Android

class DataUtils  {
  public static int unsignedByteToInt(final byte bByte) {
    return bByte & 0xFF;
  }
}