Here you can find the source of toBoolean(String value, boolean defaultValue)
Parameter | Description |
---|---|
value | The value |
defaultValue | The boolean value to use if the string value is neither 'true' nor 'false' |
public static boolean toBoolean(String value, boolean defaultValue)
//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); } }