Changed license to LGPLv3 or later.
[svjatoslav_commons.git] / src / main / java / eu / svjatoslav / commons / data / HexConverter.java
old mode 100644 (file)
new mode 100755 (executable)
index 52b16f4..a8532ad
@@ -1,19 +1,28 @@
+/*
+ * Svjatoslav Commons - shared library of common functionality.
+ * Copyright ©2012-2014, Svjatoslav Agejenko, svjatoslav@svjatoslav.eu
+ * 
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of version 3 of the GNU Lesser General Public License
+ * or later as published by the Free Software Foundation.
+ */
+
 package eu.svjatoslav.commons.data;
 
 public class HexConverter {
 
-       static final String hexCodes = "0123456789ABCDEF";
+       static final String hexCharacters = "0123456789ABCDEF";
 
-       public static String byteArrayToHex(final byte[] raw) {
+       public static String byteArrayToHex(final byte[] bytes) {
 
-               if (raw == null)
+               if (bytes == null)
                        return null;
 
-               final StringBuilder result = new StringBuilder(2 * raw.length);
+               final StringBuilder result = new StringBuilder(2 * bytes.length);
 
-               for (final byte b : raw)
-                       result.append(hexCodes.charAt((b & 0xF0) >> 4)).append(
-                                       hexCodes.charAt((b & 0x0F)));
+               for (final byte b : bytes)
+                       result.append(hexCharacters.charAt((b & 0xF0) >> 4)).append(
+                                       hexCharacters.charAt((b & 0x0F)));
 
                return result.toString();
        }