Here you can find the source of valueOf(boolean tmp)
Parameter | Description |
---|---|
tmp | Description of the Parameter |
public static String valueOf(boolean tmp)
//package com.java2s; //License from project: Open Source License public class Main { /**/* w ww. j a v a 2 s. co m*/ * Description of the Method * * @param tmp Description of the Parameter * @return Description of the Return Value */ public static String valueOf(boolean tmp) { if (tmp) { return "true"; } else { return "false"; } } }