io.github.serpro69.kfaker.provider.TheExpanse.kt Maven / Gradle / Ivy
package io.github.serpro69.kfaker.provider
import io.github.serpro69.kfaker.*
import io.github.serpro69.kfaker.dictionary.*
import io.github.serpro69.kfaker.provider.unique.LocalUniqueDataProvider
import io.github.serpro69.kfaker.provider.unique.UniqueProviderDelegate
/**
* [FakeDataProvider] implementation for [YamlCategory.THE_EXPANSE] category.
*/
@Suppress("unused")
class TheExpanse internal constructor(fakerService: FakerService) : YamlFakeDataProvider(fakerService) {
override val yamlCategory = YamlCategory.THE_EXPANSE
override val localUniqueDataProvider = LocalUniqueDataProvider()
override val unique by UniqueProviderDelegate(localUniqueDataProvider)
init {
fakerService.load(yamlCategory)
}
fun characters() = resolve("characters")
fun locations() = resolve("locations")
fun ships() = resolve("ships")
fun quotes() = resolve("quotes")
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy