/*
 * Copyright 2004-2019 H2 Group. Multiple-Licensed under the MPL 2.0,
 * and the EPL 1.0 (http://h2database.com/html/license.html).
 * Initial Developer: H2 Group
 */
package org.h2.value;

import java.sql.PreparedStatement;
import java.sql.SQLException;

import org.h2.api.ErrorCode;
import org.h2.message.DbException;

Implementation of the SMALLINT data type.
/** * Implementation of the SMALLINT data type. */
public class ValueShort extends Value {
The precision in digits.
/** * The precision in digits. */
static final int PRECISION = 5;
The maximum display size of a short. Example: -32768
/** * The maximum display size of a short. * Example: -32768 */
static final int DISPLAY_SIZE = 6; private final short value; private ValueShort(short value) { this.value = value; } @Override public Value add(Value v) { ValueShort other = (ValueShort) v; return checkRange(value + other.value); } private static ValueShort checkRange(int x) { if ((short) x != x) { throw DbException.get(ErrorCode.NUMERIC_VALUE_OUT_OF_RANGE_1, Integer.toString(x)); } return ValueShort.get((short) x); } @Override public int getSignum() { return Integer.signum(value); } @Override public Value negate() { return checkRange(-(int) value); } @Override public Value subtract(Value v) { ValueShort other = (ValueShort) v; return checkRange(value - other.value); } @Override public Value multiply(Value v) { ValueShort other = (ValueShort) v; return checkRange(value * other.value); } @Override public Value divide(Value v) { ValueShort other = (ValueShort) v; if (other.value == 0) { throw DbException.get(ErrorCode.DIVISION_BY_ZERO_1, getSQL()); } return checkRange(value / other.value); } @Override public Value modulus(Value v) { ValueShort other = (ValueShort) v; if (other.value == 0) { throw DbException.get(ErrorCode.DIVISION_BY_ZERO_1, getSQL()); } return ValueShort.get((short) (value % other.value)); } @Override public StringBuilder getSQL(StringBuilder builder) { return builder.append(value); } @Override public TypeInfo getType() { return TypeInfo.TYPE_SHORT; } @Override public int getValueType() { return SHORT; } @Override public short getShort() { return value; } @Override public int getInt() { return value; } @Override public int compareTypeSafe(Value o, CompareMode mode) { return Integer.compare(value, ((ValueShort) o).value); } @Override public String getString() { return Integer.toString(value); } @Override public int hashCode() { return value; } @Override public Object getObject() { return value; } @Override public void set(PreparedStatement prep, int parameterIndex) throws SQLException { prep.setShort(parameterIndex, value); }
Get or create a short value for the given short.
Params:
  • i – the short
Returns:the value
/** * Get or create a short value for the given short. * * @param i the short * @return the value */
public static ValueShort get(short i) { return (ValueShort) Value.cache(new ValueShort(i)); } @Override public boolean equals(Object other) { return other instanceof ValueShort && value == ((ValueShort) other).value; } }