Java Boolean From toBoolean(String value, boolean defaultValue)

Here you can find the source of toBoolean(String value, boolean defaultValue)

Description

Determines whether the boolean value of the given string value.

License

Apache License

Parameter

Parameter Description
value The value
defaultValue The boolean value to use if the string value is neither 'true' nor 'false'

Return

The boolean value of the string

Declaration

public static boolean toBoolean(String value, boolean defaultValue) 

Method Source Code

//package com.java2s;
/* Copyright 2004-2005 The Apache Software Foundation
 *
 * 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./*from   w ww .j  a v  a 2s.  co  m*/
 */

public class Main {
    /**
     * Determines whether the boolean value of the given string value.
     * 
     * @param value        The value
     * @param defaultValue The boolean value to use if the string value is neither 'true' nor 'false'
     * @return The boolean value of the string
     */
    public static boolean toBoolean(String value, boolean defaultValue) {
        return "true".equals(value) ? true : ("false".equals(value) ? false : defaultValue);
    }
}

Related

  1. toBoolean(String value)
  2. toBoolean(String value)
  3. toBoolean(String value, boolean _default)
  4. toBoolean(String value, boolean dEfault)
  5. toBoolean(String value, boolean defaultValue)
  6. toBoolean(String value, boolean defaultValue)
  7. toBoolean(String value, boolean defaultValue)
  8. toBoolean(StringBuilder value)
  9. toBooleanA(byte[] data)