Java Integer Create toInt(long l)

Here you can find the source of toInt(long l)

Description

to Int

License

Apache License

Declaration

public static int toInt(long l) 

Method Source Code

//package com.java2s;
/*/*from  w  w w  .j av a2s  .co  m*/
 * Copyright (C) 2009 JavaRosa
 *
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not
 * use this file except in compliance with the License. You may obtain a copy of
 * the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
 * License for the specific language governing permissions and limitations under
 * the License.
 */

public class Main {
    public static int toInt(long l) {
        if (l < Integer.MIN_VALUE || l > Integer.MAX_VALUE)
            throw new ArithmeticException("Value (" + l
                    + ") cannot fit into int");
        return (int) l;
    }
}

Related

  1. toInt(int byteSignificance, byte b)
  2. toInt(int[] rgb)
  3. toInt(Integer i)
  4. toInt(Integer n)
  5. toInt(long l)
  6. toInt(long unsignedInt)
  7. toInt(long[] a)
  8. toInt(Number num)
  9. toInt(Number value)