Skip to contents

Person Provider for Austrian German

Person Provider for Austrian German

Value

A PersonProvider object that can create names.

Details

Note for female and male components that we fall back on generic versions if the locale doesn't provide a male/female version. e.g., if no female first name we use first name

Super classes

charlatan::BareProvider -> charlatan::BaseProvider -> charlatan::PersonProvider -> PersonProvider_de_AT

Methods

Inherited methods


Method clone()

The objects of this class are cloneable with this method.

Usage

PersonProvider_de_AT$clone(deep = FALSE)

Arguments

deep

Whether to make a deep clone.

Examples

x <- PersonProvider_de_AT$new()
x$locale
#> [1] "de_AT"
x$render()
#> [1] "Linda Steiner"
x$first_name()
#> [1] "Olivia"
x$first_name_female()
#> [1] "Noah"
x$first_name_male()
#> [1] "Isabel"
x$last_name()
#> [1] "Lechner"
x$last_name_female()
#> [1] "Schwarz"
x$last_name_male()
#> [1] "Fischer"