blob: 15e9b38e6d1b7d0a768aefe36b098e4100255d45 [file] [log] [blame]
/*
* Copyright 2008 Google Inc.
*
* Licensed 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 java.lang;
import javaemul.internal.annotations.HasNoSideEffects;
/**
* Wraps a primitive <code>short</code> as an object.
*/
public final class Short extends Number implements Comparable<Short> {
public static final short MIN_VALUE = (short) 0x8000;
public static final short MAX_VALUE = (short) 0x7fff;
public static final int SIZE = 16;
public static final int BYTES = SIZE / Byte.SIZE;
public static final Class<Short> TYPE = short.class;
/**
* Use nested class to avoid clinit on outer.
*/
private static class BoxedValues {
// Box values according to JLS - between -128 and 127
private static Short[] boxedValues = new Short[256];
@HasNoSideEffects
private static Short get(short s) {
int rebase = s + 128;
Short result = BoxedValues.boxedValues[rebase];
if (result == null) {
result = BoxedValues.boxedValues[rebase] = new Short(s);
}
return result;
}
}
public static int compare(short x, short y) {
return x - y;
}
public static Short decode(String s) throws NumberFormatException {
return Short.valueOf((short) __decodeAndValidateInt(s, MIN_VALUE, MAX_VALUE));
}
public static int hashCode(short s) {
return s;
}
public static short parseShort(String s) throws NumberFormatException {
return parseShort(s, 10);
}
public static short parseShort(String s, int radix)
throws NumberFormatException {
return (short) __parseAndValidateInt(s, radix, MIN_VALUE, MAX_VALUE);
}
public static short reverseBytes(short s) {
return (short) (((s & 0xff) << 8) | ((s & 0xff00) >> 8));
}
public static String toString(short b) {
return String.valueOf(b);
}
public static Short valueOf(short s) {
if (s > -129 && s < 128) {
return BoxedValues.get(s);
}
return new Short(s);
}
public static Short valueOf(String s) throws NumberFormatException {
return valueOf(s, 10);
}
public static Short valueOf(String s, int radix) throws NumberFormatException {
return Short.valueOf(Short.parseShort(s, radix));
}
private final transient short value;
public Short(short value) {
this.value = value;
}
public Short(String s) {
value = parseShort(s);
}
@Override
public byte byteValue() {
return (byte) value;
}
@Override
public int compareTo(Short b) {
return compare(value, b.value);
}
@Override
public double doubleValue() {
return value;
}
@Override
public boolean equals(Object o) {
return (o instanceof Short) && (((Short) o).value == value);
}
@Override
public float floatValue() {
return value;
}
@Override
public int hashCode() {
return hashCode(value);
}
@Override
public int intValue() {
return value;
}
@Override
public long longValue() {
return value;
}
@Override
public short shortValue() {
return value;
}
@Override
public String toString() {
return toString(value);
}
}