(self)
| 1510 | """ |
| 1511 | |
| 1512 | def to_string(self): |
| 1513 | if not self.is_valid: |
| 1514 | return self._format_null() |
| 1515 | |
| 1516 | array = deref(self.val['value']) |
| 1517 | data = deref(array['data_']) |
| 1518 | data_printer = ArrayDataPrinter("arrow::ArrayData", data) |
| 1519 | return (f"{self._format_type()} of type {self.type}, " |
| 1520 | f"value {data_printer._format_contents()}") |
| 1521 | |
| 1522 | |
| 1523 | class ExtensionScalarPrinter(ScalarPrinter): |
nothing calls this directly
no test coverage detected