01: //$Id: BytesHelper.java 4597 2004-09-26 03:17:21Z oneovthafew $
02: package org.hibernate.util;
03:
04: public final class BytesHelper {
05:
06: private BytesHelper() {
07: }
08:
09: public static int toInt(byte[] bytes) {
10: int result = 0;
11: for (int i = 0; i < 4; i++) {
12: result = (result << 8) - Byte.MIN_VALUE + (int) bytes[i];
13: }
14: return result;
15: }
16:
17: }
|