Java Boolean From toBoolean(Boolean bool, boolean defaultValue)

Here you can find the source of toBoolean(Boolean bool, boolean defaultValue)

Description

to Boolean

License

Apache License

Declaration

public static boolean toBoolean(Boolean bool, boolean defaultValue) 

Method Source Code

//package com.java2s;
/**/*from  w  w  w. j a  v a2 s  .c  o  m*/
 * Copyright 2008-2016 Juho Jeong
 *
 * 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 boolean toBoolean(Boolean bool) {
        return toBoolean(bool, false);
    }

    public static boolean toBoolean(Boolean bool, boolean defaultValue) {
        if (bool == null)
            return defaultValue;

        return bool;
    }
}

Related

  1. toBool(String val, boolean def)
  2. toBoolean(boolean b)
  3. toBoolean(Boolean bool)
  4. toBoolean(Boolean bool)
  5. toBoolean(boolean bool)
  6. toBoolean(byte b)
  7. toBoolean(byte data[], int offset, boolean value)
  8. toBoolean(byte t_logical)
  9. toBoolean(byte[] b)