blob: 8298e099b012f903055fd8b1d9744e7b20b7c238 [file] [log] [blame]
/*
*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*
*/
package org.apache.qpid.server.protocol.v1_0.type;
public final class UnsignedShort extends Number implements Comparable<UnsignedShort>
{
private final short _underlying;
private static final UnsignedShort[] cachedValues = new UnsignedShort[256];
static
{
for(short i = 0; i < 256; i++)
{
cachedValues[i] = new UnsignedShort(i);
}
}
public UnsignedShort(short underlying)
{
_underlying = underlying;
}
public short shortValue()
{
return _underlying;
}
@Override
public int intValue()
{
return _underlying & 0xFFFF;
}
@Override
public long longValue()
{
return ((long) _underlying) & 0xFFFFl;
}
@Override
public float floatValue()
{
return (float) intValue();
}
@Override
public double doubleValue()
{
return (double) intValue();
}
@Override
public boolean equals(Object o)
{
if (this == o)
{
return true;
}
if (o == null || getClass() != o.getClass())
{
return false;
}
UnsignedShort that = (UnsignedShort) o;
if (_underlying != that._underlying)
{
return false;
}
return true;
}
public int compareTo(UnsignedShort o)
{
return Integer.signum(intValue() - o.intValue());
}
@Override
public int hashCode()
{
return _underlying;
}
@Override
public String toString()
{
return String.valueOf(longValue());
}
public static UnsignedShort valueOf(short underlying)
{
if((underlying & 0xFF00) == 0)
{
return cachedValues[underlying];
}
else
{
return new UnsignedShort(underlying);
}
}
public static UnsignedShort valueOf(final String value)
{
int intVal = Integer.parseInt(value);
if(intVal < 0 || intVal >= (1<<16))
{
throw new NumberFormatException("Value \""+value+"\" lies outside the range [" + 0 + "-" + (1<<16) +").");
}
return valueOf((short)intVal);
}
}