Java Boolean to String booleanToString(boolean value)

Here you can find the source of booleanToString(boolean value)

Description

Return the Flickr representation of the boolean value.

License

Open Source License

Parameter

Parameter Description
value the boolean value.

Return

"1" for true, "0" for false.

Declaration

public static String booleanToString(boolean value) 

Method Source Code

//package com.java2s;
/*//from   w w  w. j  av  a  2  s. c  om
 * Jinx is Copyright 2010 by Jeremy Brooks
 *
 * This file is part of Jinx.
 *
 * Jinx is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * Jinx is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with Jinx.  If not, see <http://www.gnu.org/licenses/>.
*/

public class Main {
    /**
     * Return the Flickr representation of the boolean value.
     *
     * @param value the boolean value.
     * @return "1" for true, "0" for false.
     */
    public static String booleanToString(boolean value) {
        return value ? "1" : "0";
    }
}

Related

  1. booleanToString(boolean a_boolean, String aS_True, String aS_False)
  2. BooleanToString(boolean aB)
  3. booleanToString(Boolean b)
  4. booleanToString(boolean b)
  5. booleanToSTRING(boolean value)
  6. booleanToString(boolean value)
  7. booleanToString(boolean[] values)
  8. booleanToString(String boolVal)
  9. booleanToString1(boolean bool)