Searched defs:toHexString (Results 1 - 3 of 3) sorted by relevance

/glassfish-3.1.2/common/common-util/src/main/java/com/sun/enterprise/universal/security/
H A DSecurityUtils.java54 return toHexString(bb);
63 static private String toHexString(byte b) { method in class:SecurityUtils
64 String s = Integer.toHexString((int) b + 128);
72 static private String toHexString(byte[] bb) { method in class:SecurityUtils
76 sb.append(toHexString(b));
/glassfish-3.1.2/transaction/jts/src/main/java/com/sun/enterprise/transaction/jts/recovery/
H A DOracleXAResource.java179 + toHexString(xid.getGlobalTransactionId()) +
181 + toHexString(xid.getBranchQualifier()) +
227 private static String toHexString(byte abyte0[]) { method in class:OracleXAResource
/glassfish-3.1.2/common/amx-core/src/main/java/org/glassfish/admin/amx/util/
H A DStringUtil.java112 public static String toHexString(byte theByte) method in class:StringUtil
114 String result = Integer.toHexString(((int) theByte) & 0x000000FF);
122 public static String toHexString(byte[] bytes) method in class:StringUtil
124 return (toHexString(bytes, null));
127 public static String toHexString(byte[] bytes, String delim) method in class:StringUtil
139 buf.append(toHexString(bytes[i]));
146 buf.append(toHexString(bytes[i]) + delim);

Completed in 48 milliseconds