/**
  *  Return a alternate selector builder that alternatve of values
  *
  *  @access public
  *  @return \Faker\Components\Engine\Entity\Builder\SelectorAlternateBuilder
  */
 public function selectorAlternate()
 {
     $node = new SelectorAlternateBuilder('SelectorAlternate', $this->eventDispatcher, $this->repo, $this->utilities, $this->generator, $this->locale, $this->database, $this->templateLoader);
     $node->setParent($this);
     return $node;
 }