19 declare(strict_types=1);
36 public function setValue($index,
string $value): void
38 $this->columns[$index] = $value;
55 foreach ($values as $value) {
56 $this->
setValue($i++, (
string) $value);
67 if (is_string($idx) && !array_key_exists($idx, $this->columns)) {
68 throw new DomainException(
'Invalid index given: ' . $idx);
72 ($idx < 0 || $idx >= count($this->columns))) {
73 throw new DomainException(
"Index too small or too large: " . $idx);
76 return $this->columns[$idx];
Row Class for XMLResultSet.
setValue($index, string $value)
set column value
setValues(array $values)
Set values from array.
getValue($idx)
Return value for column with specified index.