io.github.serpro69.kfaker.provider.unique.UniqueDataProvider.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kotlin-faker Show documentation
Show all versions of kotlin-faker Show documentation
Generate realistically looking fake data such as names, addresses, banking details, and many more, that can be used for testing and data anonymization purposes.
package io.github.serpro69.kfaker.provider.unique
abstract class UniqueDataProvider {
// internal abstract val config: UniqueProviderConfiguration
/**
* Disables "unique generation" for all providers that were configured to return unique values.
*/
abstract fun disableAll()
/**
* Clears the already returned (used) unique values so that they can again be returned.
*/
abstract fun clearAll()
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy