Package-level declarations

Types

Link copied to clipboard
data class PatternGenerationOptions(val defaultMinLength: Int = DEFAULT_MIN_LENGTH, val spaceChars: String = RESTRICTED_SPACE_CHARS, val anyPrintableChars: String? = null)

Configuration options for pattern-based value generation.

Link copied to clipboard
class PatternValueGenerator(options: PatternGenerationOptions = PatternGenerationOptions())

Generates string values based on regular expression patterns using the regexp-gen library.

Link copied to clipboard
class PatternValueProvider(patternValueGenerator: PatternValueGenerator = PatternValueGenerator()) : SchemaValueProvider

Provides values matching schema pattern constraints.