mirror of
https://github.com/ramsey/uuid.git
synced 2026-06-15 16:07:55 +03:00
51 lines
899 B
PHP
51 lines
899 B
PHP
<?php
|
|
|
|
namespace Rhumsaa\Uuid;
|
|
|
|
interface UuidInterface
|
|
{
|
|
|
|
public function compareTo(UuidInterface $other);
|
|
|
|
public function equals($other);
|
|
|
|
public function getConverter();
|
|
|
|
public function getHex();
|
|
|
|
public function getFieldsHex();
|
|
|
|
public function getClockSeqHiAndReservedHex();
|
|
|
|
public function getClockSeqLowHex();
|
|
|
|
public function getClockSequenceHex();
|
|
|
|
public function getDateTime();
|
|
|
|
public function getInteger();
|
|
|
|
public function getLeastSignificantBitsHex();
|
|
|
|
public function getMostSignificantBitsHex();
|
|
|
|
public function getNodeHex();
|
|
|
|
public function getTimeHiAndVersionHex();
|
|
|
|
public function getTimeLowHex();
|
|
|
|
public function getTimeMidHex();
|
|
|
|
public function getTimestampHex();
|
|
|
|
public function getUrn();
|
|
|
|
public function getVariant();
|
|
|
|
public function getVersion();
|
|
|
|
public function toString();
|
|
|
|
}
|