Java Boolean to String booleanToString(String boolVal)

Here you can find the source of booleanToString(String boolVal)

Description

boolean To String

License

Open Source License

Declaration

public static String booleanToString(String boolVal) 

Method Source Code

//package com.java2s;
/*/*from   w  w  w  .j av  a 2  s .  c om*/
 *  Copyright (c) 2016, WSO2 Inc. (http://www.wso2.org) All Rights Reserved.
 *
 *  WSO2 Inc. licenses this file to you 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 String booleanToString(String boolVal) {
        if (boolVal != null) {
            if (boolVal.equalsIgnoreCase("true")
                    || boolVal.equalsIgnoreCase("false")) {
                return boolVal.toLowerCase();
            }
        }
        return null;
    }
}

Related

  1. booleanToString(Boolean b)
  2. booleanToString(boolean value)
  3. booleanToSTRING(boolean value)
  4. booleanToString(boolean value)
  5. booleanToString(boolean[] values)
  6. booleanToString1(boolean bool)
  7. booleanToString_1(String str)
  8. boolToStr(Boolean value)
  9. boolToString(boolean x)