ILIAS  trunk Revision v11.0_alpha-1715-g7fc467680fb
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
Number.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
23 interface 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 }
withDecimals(int $number_of_decimals)
withUnit(string $unit, string $unit_position=self::UNIT_POSITION_AFT)
A Column describes the form of presentation for a certain aspect of data, i.e.
Definition: Column.php:27