Java Integer to Int2Short(int i)

Here you can find the source of Int2Short(int i)

Description

Int Short

License

Open Source License

Declaration

public static short Int2Short(int i) 

Method Source Code

//package com.java2s;
/* BioWebAuth (Biometrics for Web Authentication) is an open-source Java 
 * framework intended to provide web authentication based on BioAPI-compliant 
 * biometric software or devices./*  w ww. j  a va 2  s  .c om*/
 * 
 * Copyright (c) 2005-2007 Elisardo Gonzalez Agulla <eli@gts.tsc.uvigo.es> 
 *                  & Enrique Otero Muras <eotero@gts.tsc.uvigo.es>
 *
 * This library 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 2.1 of the License, or (at your option) any later version.
 *
 * This library 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 this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 */

public class Main {
    public static short Int2Short(int i) {
        short o;
        try {
            o = new Integer(i).shortValue();
        } catch (Exception e) {
            o = 0;
        }
        return o;
    }
}

Related

  1. int2float(Integer integer)
  2. int2Integer(int[] array)
  3. int2minBeb(final int x)
  4. int2path(int v)
  5. int2rgb(final int color)
  6. int2sortableStr(int val)
  7. int2TwoChars(int i)
  8. intTo2LengthBytes(int i)
  9. intTo2UnsignedBytes(int val)