Uses of Class
com.github.curiousoddman.rgxgen.model.RgxGenCharsDefinition
Packages that use RgxGenCharsDefinition
Package
Description
-
Uses of RgxGenCharsDefinition in com.github.curiousoddman.rgxgen.config
Fields in com.github.curiousoddman.rgxgen.config with type parameters of type RgxGenCharsDefinitionModifier and TypeFieldDescriptionstatic final RgxGenOption<RgxGenCharsDefinition>RgxGenOption.DOT_MATCHES_ONLYChoose which characters dot pattern could generate. -
Uses of RgxGenCharsDefinition in com.github.curiousoddman.rgxgen.model
Methods in com.github.curiousoddman.rgxgen.model that return RgxGenCharsDefinitionModifier and TypeMethodDescriptionstatic RgxGenCharsDefinitionRgxGenCharsDefinition.of(char... characters) static RgxGenCharsDefinitionRgxGenCharsDefinition.of(RgxGenCharsDefinition other) static RgxGenCharsDefinitionRgxGenCharsDefinition.of(SymbolRange... ranges) static RgxGenCharsDefinitionRgxGenCharsDefinition.of(UnicodeCategory category) static RgxGenCharsDefinitionstatic RgxGenCharsDefinitionstatic RgxGenCharsDefinitionRgxGenCharsDefinition.of(List<SymbolRange> externalRanges) static RgxGenCharsDefinitionRgxGenCharsDefinition.of(List<SymbolRange> symbolRanges, CharList symbols) RgxGenCharsDefinition.withCharacters(char... characters) RgxGenCharsDefinition.withCharacters(CharList characters) RgxGenCharsDefinition.withRanges(SymbolRange... ranges) RgxGenCharsDefinition.withRanges(List<SymbolRange> ranges) Methods in com.github.curiousoddman.rgxgen.model with parameters of type RgxGenCharsDefinitionModifier and TypeMethodDescriptionvoidRgxGenCharsDefinition.addAll(RgxGenCharsDefinition other) static RgxGenCharsDefinitionRgxGenCharsDefinition.of(RgxGenCharsDefinition other) -
Uses of RgxGenCharsDefinition in com.github.curiousoddman.rgxgen.nodes
Methods in com.github.curiousoddman.rgxgen.nodes that return RgxGenCharsDefinitionMethods in com.github.curiousoddman.rgxgen.nodes with parameters of type RgxGenCharsDefinitionModifier and TypeMethodDescriptionstatic SymbolSetSymbolSet.ofAscii(String pattern, RgxGenCharsDefinition positiveMatchDefinitions, RgxGenCharsDefinition negativeMatchDefinitions, MatchType matchType) static SymbolSetSymbolSet.ofUnicode(String pattern, RgxGenCharsDefinition positiveMatchDefinitions, RgxGenCharsDefinition negativeMatchDefinitions, MatchType matchType) Constructors in com.github.curiousoddman.rgxgen.nodes with parameters of type RgxGenCharsDefinitionModifierConstructorDescriptionSymbolSet(String pattern, RgxGenCharsDefinition positiveGenerationChars, RgxGenCharsDefinition negativeMatchExclusion, MatchType type, SymbolRange universeCharacters) Create SymbolSet from ranges and symbols according to type