Returns a string containing a concise, human-readable description of this boolean. @return "true" if the value of this boolean is true, "false" otherwise.
()
| 152 | * otherwise. |
| 153 | */ |
| 154 | @Override |
| 155 | public String toString() { |
| 156 | return String.valueOf(value); |
| 157 | } |
| 158 | |
| 159 | /** |
| 160 | * Returns the {@code boolean} value of the system property identified by |