Java Boolean From toBoolStr(boolean b)

Here you can find the source of toBoolStr(boolean b)

Description

to Bool Str

License

Open Source License

Declaration

public static String toBoolStr(boolean b) 

Method Source Code

//package com.java2s;
//License from project: Open Source License 

public class Main {
    public static String toBoolStr(boolean b) {
        return String.valueOf(b);
    }//  ww  w .java2 s  .  c o  m
}

Related

  1. toBooleans(byte[] value, int offset, int num)
  2. toBooleanString(long value)
  3. toBooleanTrue(String str)
  4. toBooleanValue(final Object o)
  5. toBooleanValue(Object val)
  6. toBoolString(Boolean b)