Java Integer Create toInteger(Number n)

Here you can find the source of toInteger(Number n)

Description

Converts a Number to an Integer.

License

Open Source License

Parameter

Parameter Description
The Number to be converted.

Return

The converted Integer. Returns null when the input parameter is null.

Declaration

public static Integer toInteger(Number n) 

Method Source Code

//package com.java2s;
/*******************************************************************************
 * Copyright (c) 2010-2015 BSI Business Systems Integration AG.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:/*  w  ww . j a  va  2s . co m*/
 *     BSI Business Systems Integration AG - initial API and implementation
 ******************************************************************************/

public class Main {
    /**
     * Converts a Number to an Integer.
     *
     * @param The
     *          Number to be converted.
     * @return The converted Integer. Returns <code>null</code> when the input parameter is <code>null</code>.
     */
    public static Integer toInteger(Number n) {
        if (n == null) {
            return null;
        }
        return n.intValue();
    }
}

Related

  1. toInteger(int[] arr)
  2. toInteger(int[] bytes)
  3. toInteger(Long l)
  4. toInteger(long n)
  5. toInteger(Number n)
  6. toInteger(Number number)
  7. toInteger(Object _inStrObj)
  8. toInteger(Object _value, int _default)
  9. toInteger(Object anObj)