/**
  * @return \Components\I18n_Location_Type
  */
 public function type()
 {
     if (null === $this->m_type) {
         if (isset($this->initialized()->m_data['type'])) {
             $this->m_type = I18n_Location_Type::forKey($this->m_data['type']);
         }
     }
     return $this->m_type;
 }
 /**
  * @see \Components\I18n_Location::type() \Components\I18n_Location::type()
  */
 public function type()
 {
     return I18n_Location_Type::COUNTRY();
 }