Get the current node value as ``str``. :return: If the current node is a string, its value, ``""`` otherwise.
(self)
| 1359 | return pn_data_get_binary(self._data) |
| 1360 | |
| 1361 | def get_string(self) -> str: |
| 1362 | """ |
| 1363 | Get the current node value as ``str``. |
| 1364 | |
| 1365 | :return: If the current node is a string, its value, ``""`` otherwise. |
| 1366 | """ |
| 1367 | return pn_data_get_string(self._data) |
| 1368 | |
| 1369 | def get_symbol(self) -> symbol: |
| 1370 | """ |
nothing calls this directly
no test coverage detected