Doctrine\ODM\PHPCR\Mapping\ClassMetadata::isIdGeneratorNone PHP 메소드

isIdGeneratorNone() 공개 메소드

Checks whether the class uses no id generator.
public isIdGeneratorNone ( ) : boolean
리턴 boolean TRUE if the class does not use any id generator, FALSE otherwise.
    public function isIdGeneratorNone()
    {
        return $this->idGenerator === self::GENERATOR_TYPE_NONE;
    }
ClassMetadata