2 * Copyright (c) 2013 Cisco Systems, Inc. and others. All rights reserved.
4 * This program and the accompanying materials are made available under the
5 * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6 * and is available at http://www.eclipse.org/legal/epl-v10.html
8 package org.opendaylight.yangtools.yang.model.util;
10 import org.opendaylight.yangtools.concepts.Immutable;
13 * Implementation of Yang int16 built-in type. <br>
14 * int16 represents integer values between -32768 and 32767, inclusively. The
15 * Java counterpart of Yang int16 built-in type is {@link Short}.
17 * @see AbstractSignedInteger
19 public final class Int16 extends AbstractSignedInteger implements Immutable {
20 private static final String DESCRIPTION = "int16 represents integer values between -32768 and 32767, inclusively.";
22 private static final Int16 INSTANCE = new Int16();
25 super(BaseTypes.INT16_QNAME, DESCRIPTION, Short.MIN_VALUE, Short.MAX_VALUE, "");
29 * Returns default instance of int16 type.
30 * @return default instance of int16 type.
32 public static Int16 getInstance() {
37 public Object getDefaultValue() {
42 public String toString() {
43 return "type " + BaseTypes.INT16_QNAME;