[Fix] ByteHelper.getUpperNibble() was broken for signed values

This commit is contained in:
Robert von Burg 2017-12-12 14:59:09 +01:00
parent 6328827f9e
commit 23007aae2f
1 changed files with 29 additions and 29 deletions

View File

@ -1,12 +1,12 @@
/* /*
* Copyright 2013 Robert von Burg <eitch@eitchnet.ch> * Copyright 2013 Robert von Burg <eitch@eitchnet.ch>
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
* You may obtain a copy of the License at * You may obtain a copy of the License at
* *
* http://www.apache.org/licenses/LICENSE-2.0 * http://www.apache.org/licenses/LICENSE-2.0
* *
* Unless required by applicable law or agreed to in writing, software * Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, * distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@ -155,10 +155,10 @@ public class ByteHelper {
/** /**
* Creates a long of the given byte array. They byte array must be 8 bytes long. The byte at index 0 is the highest * Creates a long of the given byte array. They byte array must be 8 bytes long. The byte at index 0 is the highest
* byte * byte
* *
* @param bytes * @param bytes
* the bytes to convert to a long * the bytes to convert to a long
* *
* @return the long created from the bytes * @return the long created from the bytes
*/ */
public static long toLong(byte[] bytes) { public static long toLong(byte[] bytes) {
@ -179,10 +179,10 @@ public class ByteHelper {
/** /**
* Creates an integer of the given byte array. They byte array must be 4 bytes long. The byte at index 0 is the * Creates an integer of the given byte array. They byte array must be 4 bytes long. The byte at index 0 is the
* highest byte * highest byte
* *
* @param bytes * @param bytes
* the bytes to convert to an integer * the bytes to convert to an integer
* *
* @return the integer created from the bytes * @return the integer created from the bytes
*/ */
public static int toInt(byte[] bytes) { public static int toInt(byte[] bytes) {
@ -199,10 +199,10 @@ public class ByteHelper {
/** /**
* Creates a short of the given byte array. They byte array must be 2 bytes long. The byte at index 0 is the highest * Creates a short of the given byte array. They byte array must be 2 bytes long. The byte at index 0 is the highest
* byte * byte
* *
* @param bytes * @param bytes
* the bytes to convert to an integer * the bytes to convert to an integer
* *
* @return the integer created from the bytes * @return the integer created from the bytes
*/ */
public static short toShort(byte[] bytes) { public static short toShort(byte[] bytes) {
@ -247,19 +247,19 @@ public class ByteHelper {
} }
public static byte getUpperNibble(byte b) { public static byte getUpperNibble(byte b) {
return (byte) ((byte) (0xf0 & b) >> 4); return (byte) (b >>> 4 & 0x0f);
} }
public static byte getLowerNibble(byte b) { public static byte getLowerNibble(byte b) {
return (byte) (0xf & b); return (byte) (0x0f & b);
} }
/** /**
* Formats the given byte array to a binary string, separating each byte by a space * Formats the given byte array to a binary string, separating each byte by a space
* *
* @param bytes * @param bytes
* the byte to format to a binary string * the byte to format to a binary string
* *
* @return the binary string * @return the binary string
*/ */
public static String asBinary(byte[] bytes) { public static String asBinary(byte[] bytes) {
@ -275,10 +275,10 @@ public class ByteHelper {
/** /**
* Formats the given byte to a binary string * Formats the given byte to a binary string
* *
* @param b * @param b
* the byte to format to a binary string * the byte to format to a binary string
* *
* @return the binary string * @return the binary string
*/ */
public static String asBinary(byte b) { public static String asBinary(byte b) {
@ -299,10 +299,10 @@ public class ByteHelper {
/** /**
* Formats the given integer to a binary string, each byte is separated by a space * Formats the given integer to a binary string, each byte is separated by a space
* *
* @param i * @param i
* the integer to format to a string * the integer to format to a string
* *
* @return the binary string * @return the binary string
*/ */
public static String asBinary(short i) { public static String asBinary(short i) {
@ -334,10 +334,10 @@ public class ByteHelper {
/** /**
* Formats the given integer to a binary string, each byte is separated by a space * Formats the given integer to a binary string, each byte is separated by a space
* *
* @param i * @param i
* the integer to format to a string * the integer to format to a string
* *
* @return the binary string * @return the binary string
*/ */
public static String asBinary(int i) { public static String asBinary(int i) {
@ -391,10 +391,10 @@ public class ByteHelper {
/** /**
* Formats the given long to a binary string, each byte is separated by a space * Formats the given long to a binary string, each byte is separated by a space
* *
* @param i * @param i
* the long to format * the long to format
* *
* @return the binary string * @return the binary string
*/ */
public static String asBinary(long i) { public static String asBinary(long i) {