Java Boolean Convert to booleanArrayToString(boolean[] ba)

Here you can find the source of booleanArrayToString(boolean[] ba)

Description

Utility to convert a boolean[] to a String.

License

Open Source License

Parameter

Parameter Description
ba The boolean[]

Return

String version

Declaration

public static String booleanArrayToString(boolean[] ba) 

Method Source Code

//package com.java2s;
/**********************************************************************
Copyright (c) 2003 Andy Jefferson and others. All rights reserved. 
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//from www . j  a v a 2 s. c  o m
    
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.
     
    
Contributors:
2003 Erik Bengtson - moved replaceAll from Column class to here
2004 Andy Jefferson - moved intArrayToString, booleanArrayToString from SM
2007 Xuan Baldauf - toJVMIDString hex fix
...
**********************************************************************/

public class Main {
    /**
     * Utility to convert a boolean[] to a String.
     * @param ba The boolean[]
     * @return String version 
     */
    public static String booleanArrayToString(boolean[] ba) {
        if (ba == null) {
            return "null";
        }

        StringBuilder sb = new StringBuilder("[");
        for (int i = 0; i < ba.length; ++i) {
            sb.append(ba[i] ? 'Y' : 'N');
        }
        sb.append(']');

        return sb.toString();
    }
}

Related

  1. booleanArrayToBytes(boolean[] input)
  2. booleanArrayToInt(boolean[] in)
  3. booleanArrayToIntIndexes(boolean[] arrb)
  4. booleanArrayToString(boolean[] array)
  5. booleanArrayToString(boolean[] b, String delim)
  6. booleanToBasicType(boolean b, Class clazz)
  7. booleanToDouble(boolean b)
  8. booleanToStr(boolean bool)
  9. booleanToTinyInt(boolean b)