Doctrine\ODM\MongoDB\Mapping\ClassMetadataInfo::isIdGeneratorUuid PHP Method

isIdGeneratorUuid() public method

Checks whether the class will generate a uuid id.
public isIdGeneratorUuid ( ) : boolean
return boolean TRUE if the class uses the UUID generator, FALSE otherwise.
    public function isIdGeneratorUuid()
    {
        return $this->generatorType == self::GENERATOR_TYPE_UUID;
    }
ClassMetadataInfo