View Source Faker.Industry (Faker v0.19.0-alpha.1)

Functions for generating Industry related data Reference https://en.wikipedia.org/wiki/Industry_Classification_Benchmark

Summary

Functions

Returns a Industry name string

Returns a Sector name string

Returns a Sub Sector name string

Returns a Super Sector name string

Functions

industry()

@spec 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"

sector()

@spec 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"

sub_sector()

@spec 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"

super_sector()

@spec 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"