Java Integer Create toInteger(String value, int _default)

Here you can find the source of toInteger(String value, int _default)

Description

INTERNAL: Casts string to int value, returns default if it fails.

License

Apache License

Declaration

public static int toInteger(String value, int _default) 

Method Source Code

//package com.java2s;
/*//from  w  w  w  . jav a2s.c o  m
 * #!
 * Ontopia Engine
 * #-
 * Copyright (C) 2001 - 2013 The Ontopia Project
 * #-
 * 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 {
    /**
     * INTERNAL: Casts string to int value, returns default if it fails.
     */
    public static int toInteger(String value, int _default) {
        try {
            return Integer.parseInt(value);
        } catch (NumberFormatException e) {
            return _default;
        }
    }
}

Related

  1. toInteger(String val)
  2. toInteger(String value)
  3. toInteger(String value)
  4. toInteger(String value)
  5. toInteger(String value)
  6. toInteger(String value, int defaultValue)
  7. toInteger(String value, int defaultValue)
  8. toInteger(String value, Integer defValue)
  9. toInteger(String[] s)