com.sshtools.common.util.UnsignedInteger32 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of maverick-utils Show documentation
Show all versions of maverick-utils Show documentation
Utililty classes for Maverick Synergy and Maverick Legacy SSH APIs
/**
* (c) 2002-2021 JADAPTIVE Limited. All Rights Reserved.
*
* This file is part of the Maverick Synergy Java SSH API.
*
* Maverick Synergy is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Maverick Synergy is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with Maverick Synergy. If not, see .
*/
/* HEADER */
package com.sshtools.common.util;
/**
* This class provides a 32bit unsigned integer.
*
* @author Lee David Painter
*/
public class UnsignedInteger32 {
/** The maximum value of a 32bit unsigned integer */
public final static long MAX_VALUE = 0xffffffffL;
/** The minimum value of a 32bit unsigned integer */
public final static long MIN_VALUE = 0;
private Long value;
/**
* Creates a new UnsignedInteger32 object.
*
* @param a
*
* @throws NumberFormatException
*/
public UnsignedInteger32(long a) {
if ( (a < MIN_VALUE) || (a > MAX_VALUE)) {
throw new NumberFormatException();
}
value = new Long(a);
}
/**
* Creates a new UnsignedInteger32 object.
*
* @param a
*
* @throws NumberFormatException
*/
public UnsignedInteger32(String a) throws NumberFormatException {
long longValue = Long.parseLong(a);
if ( (longValue < MIN_VALUE) || (longValue > MAX_VALUE)) {
throw new NumberFormatException();
}
value = new Long(longValue);
}
/**
* Returns the long value of the unsigned integer cast to an int
*
* @return
*/
public int intValue() {
return (int) value.longValue();
}
/**
* Returns the long value of this unsigned integer.
*
* @return
*/
public long longValue() {
return value.longValue();
}
/**
* Returns a String representation of the unsigned integer.
*
* @return
*/
public String toString() {
return value.toString();
}
/**
* Returns the objects hash code.
*
* @return
*/
public int hashCode() {
return value.hashCode();
}
/**
* Compares an object.
*
* @param o
*
* @return
*/
public boolean equals(Object o) {
if (! (o instanceof UnsignedInteger32)) {
return false;
}
return ( ( (UnsignedInteger32) o).value.equals(this.value));
}
/**
* Add two unsigned integers together.
*
* @param x
* @param y
*
* @return UnsignedInteger32
*/
public static UnsignedInteger32 add(UnsignedInteger32 x, UnsignedInteger32 y) {
return new UnsignedInteger32(x.longValue() + y.longValue());
}
/**
* Add an int to an unsigned integer.
*
* @param x
* @param y
*
* @return UnsignedInteger32
*/
public static UnsignedInteger32 add(UnsignedInteger32 x, int y) {
return new UnsignedInteger32(x.longValue() + y);
}
}