Java Long to Int Long2Int(long i)

Here you can find the source of Long2Int(long i)

Description

Long Int

License

Open Source License

Declaration

public static int Long2Int(long 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.//from w w w .java  2s .c o m
 * 
 * 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 int Long2Int(long i) {
        int o;
        try {
            o = new Long(i).intValue();
        } catch (Exception e) {
            o = 0;
        }
        return o;
    }
}

Related

  1. long2int(final long l)
  2. long2int(final long l)
  3. long2int(final long l)
  4. long2Int(final long v)
  5. long2int(final long[] a)
  6. long2int(Long source)
  7. longToInt(final Long l, final String name, final int deflt)
  8. longToInt(long d)
  9. longToInt(Long l)