Jackalope\NodeType\NodeType::getSupertypeNames PHP Method

getSupertypeNames() public method

{@inheritDoc}
public getSupertypeNames ( )
    public function getSupertypeNames()
    {
        if (null === $this->superTypeNames) {
            $this->superTypeNames = array();
            foreach ($this->getSupertypes() as $superType) {
                $this->superTypeNames[] = $superType->getName();
            }
        }
        return $this->superTypeNames;
    }