Returns the string representation of the boolean argument.
(boolean value)
| 860 | * Returns the string representation of the boolean argument. |
| 861 | */ |
| 862 | public static java.lang.String valueOf(boolean value){ |
| 863 | return value ? "true" : "false"; |
| 864 | } |
| 865 | |
| 866 | /** |
| 867 | * Returns the string representation of the char argument. |