ILIAS  release_7 Revision v7.30-3-g800a261c036
All Data Structures Namespaces Files Functions Variables Modules Pages
Uuid.php
Go to the documentation of this file.
1 <?php
2 
3 namespace ILIAS\Data\UUID;
4 
11 interface 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 }
equals(Uuid $other)
Compares this object to the specified object.
toString()
Converts this UUID into a string representation.
compareTo(Uuid $other)
Compares this UUID to the specified UUID.