Set the content to be a string @param s The string
(String s)
| 170 | * @param s The string |
| 171 | */ |
| 172 | public void setString(String s) { |
| 173 | strValue = s; |
| 174 | hasHashCode = false; |
| 175 | hasLongValue = false; |
| 176 | if (s == null) { |
| 177 | type = T_NULL; |
| 178 | } else { |
| 179 | type = T_STR; |
| 180 | } |
| 181 | } |
| 182 | |
| 183 | // -------------------- Conversion and getters -------------------- |
| 184 |
no outgoing calls