module FFaker::NameJA

Public Instance Methods

first_name() click to toggle source
# File lib/ffaker/name_ja.rb, line 8
def first_name
  fetch_sample(FIRST_NAMES)
end
last_first() click to toggle source
# File lib/ffaker/name_ja.rb, line 16
def last_first
  "#{last_name}#{first_name}"
end
Also aliased as: name
last_name() click to toggle source
# File lib/ffaker/name_ja.rb, line 12
def last_name
  fetch_sample(LAST_NAMES)
end
name()
Alias for: last_first