ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
Number.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
23interface Number extends Column
24{
25 public const UNIT_POSITION_FORE = 'FORE';
26 public const UNIT_POSITION_AFT = 'AFT';
27
28 public function withDecimals(int $number_of_decimals): self;
29 public function withUnit(string $unit, string $unit_position = self::UNIT_POSITION_AFT): self;
30}
A Column describes the form of presentation for a certain aspect of data, i.e.
Definition: Column.php:28
withDecimals(int $number_of_decimals)
withUnit(string $unit, string $unit_position=self::UNIT_POSITION_AFT)