ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
Uuid.php
Go to the documentation of this file.
1<?php
2
3namespace ILIAS\Data\UUID;
4
11interface Uuid
12{
13
27 public function compareTo(Uuid $other) : int;
28
39 public function equals(Uuid $other) : bool;
40
46 public function toString() : string;
47}
An exception for terminatinating execution or to throw for unit testing.
toString()
Converts this UUID into a string representation.
equals(Uuid $other)
Compares this object to the specified object.
compareTo(Uuid $other)
Compares this UUID to the specified UUID.