Package-level declarations

Types

Link copied to clipboard
class SimpleRandomStringGenerator(length: Int = 10, charPool: List<Char> = (('1'..'9') + ('A'..'Z') + ('a'..'z')).toList()) : ValueGenerator<String>

Generate random string from specified char pool with specified length

Link copied to clipboard
class UUIDStringGenerator(removeDash: Boolean = true) : ValueGenerator<String>

Generate UUID String with optional dash removing

Link copied to clipboard
interface ValueGenerator<T>