Faker v0.12.0 Faker.Industry View Source
Functions for generating Industry related data Reference https://en.wikipedia.org/wiki/Industry_Classification_Benchmark
Link to this section Summary
Functions
Returns a Industry name string
Returns a Sector name string
Returns a Sub Sector name string
Returns a Super Sector name string
Link to this section Functions
Link to this function
industry()
View Source
industry()
View Source
industry() :: String.t()
industry() :: String.t()
Returns a Industry name string
Examples
iex> Faker.Industry.industry
"Oil & Gas"
iex> Faker.Industry.industry
"Basic Materials"
iex> Faker.Industry.industry
"Consumer Services"
iex> Faker.Industry.industry
"Health Care"
Link to this function
sector()
View Source
sector()
View Source
sector() :: String.t()
sector() :: String.t()
Returns a Sector name string
Examples
iex> Faker.Industry.sector
"Food & Drug Retailers"
iex> Faker.Industry.sector
"Banks"
iex> Faker.Industry.sector
"Software & Computer Services"
iex> Faker.Industry.sector
"Media"
Link to this function
sub_sector()
View Source
sub_sector()
View Source
sub_sector() :: String.t()
sub_sector() :: String.t()
Returns a Sub Sector name string
Examples
iex> Faker.Industry.sub_sector()
"Electrical Components & Equipment"
iex> Faker.Industry.sub_sector()
"Publishing"
iex> Faker.Industry.sub_sector()
"Alternative Electricity"
iex> Faker.Industry.sub_sector()
"Forestry"
Link to this function
super_sector()
View Source
super_sector()
View Source
super_sector() :: String.t()
super_sector() :: String.t()
Returns a Super Sector name string
Examples
iex> Faker.Industry.super_sector
"Automobiles & Parts"
iex> Faker.Industry.super_sector
"Banks"
iex> Faker.Industry.super_sector
"Automobiles & Parts"
iex> Faker.Industry.super_sector
"Health Care"