WordScheme 
            data class WordScheme(myName: String, minLength: Int, maxLength: Int, enclosure: String, capitalization: CapitalizationMode, bundledDictionaryFiles: MutableSet<String>, activeBundledDictionaryFiles: MutableSet<String>, userDictionaryFiles: MutableSet<String>, activeUserDictionaryFiles: MutableSet<String>) : Scheme<WordScheme> 
Content copied to clipboard
Contains settings for generating random words.
See also
Constructors
WordScheme
                          
                    Link copied to clipboard
                        fun WordScheme(myName: String = DEFAULT_NAME, minLength: Int = DEFAULT_MIN_LENGTH, maxLength: Int = DEFAULT_MAX_LENGTH, enclosure: String = DEFAULT_ENCLOSURE, capitalization: CapitalizationMode = DEFAULT_CAPITALIZATION, bundledDictionaryFiles: MutableSet<String> = DEFAULT_BUNDLED_DICTIONARY_FILES.toMutableSet(), activeBundledDictionaryFiles: MutableSet<String> = DEFAULT_ACTIVE_BUNDLED_DICTIONARY_FILES.toMutableSet(), userDictionaryFiles: MutableSet<String> = DEFAULT_USER_DICTIONARY_FILES.toMutableSet(), activeUserDictionaryFiles: MutableSet<String> = DEFAULT_ACTIVE_USER_DICTIONARY_FILES.toMutableSet())
Content copied to clipboard
Types
Functions
copyAs
                          
                    
                  Link copied to clipboard
                        copyFrom
                          
                    
                  Link copied to clipboard
                        getDisplayName
                          
                    Link copied to clipboard
                        Properties
activeBundledDictionaries
                          
                    Link copied to clipboard
                        A mutable view of the filenames of the files in activeBundledDictionaryFiles.
activeBundledDictionaryFiles
                          
                    Link copied to clipboard
                        The list of bundled dictionary files that are currently active; a subset of bundledDictionaryFiles.
activeUserDictionaries
                          
                    Link copied to clipboard
                        A mutable view of the filenames of the files in activeUserDictionaryFiles.
activeUserDictionaryFiles
                          
                    Link copied to clipboard
                        The list of user dictionary files that are currently active; a subset of userDictionaryFiles.
bundledDictionaries
                          
                    Link copied to clipboard
                        A mutable view of the filenames of the files in bundledDictionaryFiles.
bundledDictionaryFiles
                          
                    
                  Link copied to clipboard
                        capitalization
                          
                    
                  Link copied to clipboard
                        userDictionaries
                          
                    Link copied to clipboard
                        A mutable view of the filenames of the files in userDictionaryFiles.
userDictionaryFiles
                          
                    
                  Link copied to clipboard
                        Sources
jvm source
                          
                    
                  Link copied to clipboard