1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
<?php
/**
*
*
*
* Generated by <a href="http://enunciate.codehaus.org">Enunciate</a>.
*
*/
namespace Gedcomx\Types;
/**
* Enumeration of standard name types.
*/
class NameType
{
/**
* Name given at birth.
*/
const BIRTHNAME = "http://gedcomx.org/BirthName";
/**
* Name used at the time of death.
*/
const DEATHNAME = "http://gedcomx.org/DeathName";
/**
* Name accepted at marriage.
*/
const MARRIEDNAME = "http://gedcomx.org/MarriedName";
/**
* "Also known as" name.
*/
const ALSOKNOWNAS = "http://gedcomx.org/AlsoKnownAs";
/**
* Nickname.
*/
const NICKNAME = "http://gedcomx.org/Nickname";
/**
* Name given at adoption.
*/
const ADOPTIVENAME = "http://gedcomx.org/AdoptiveName";
/**
* A formal name, usually given to distinguish it from a name more commonly used.
*/
const FORMALNAME = "http://gedcomx.org/FormalName";
/**
* A name given at a religious rite or ceremony.
*/
const RELIGIOUSNAME = "http://gedcomx.org/ReligiousName";
}