Module: JapaneseNames::Enamdict

Defined in:
lib/japanese_names/enamdict.rb

Overview

Enumerated flags for the ENAMDICT file (www.csse.monash.edu.au/~jwb/enamdict_doc.html)

Constant Summary collapse

NAME_PLACE =

place-name (99,500)

%i[p].freeze
NAME_PERSON =

person name, either given or surname, as-yet unclassified (139,000)

%i[u].freeze
NAME_SURNAME =

surname (138,500)

%i[s].freeze
NAME_GIVEN_MALE =

male given name (14,500)

%i[m].freeze
NAME_GIVEN_FEMALE =

female given name (106,300)

%i[f].freeze
NAME_GIVEN_OTHER =

given name, as-yet not classified by sex (64,600)

%i[g].freeze
NAME_SURNAME_ANY =
(NAME_PLACE | NAME_PERSON | NAME_SURNAME).freeze
NAME_GIVEN_ANY =
(NAME_PERSON | NAME_GIVEN_MALE | NAME_GIVEN_FEMALE | NAME_GIVEN_OTHER).freeze
NAME_ANY =
(NAME_SURNAME_ANY | NAME_GIVEN_ANY).freeze