class WordSettings : Settings<WordSettings>
Contains settings for generating random words.
See Also
WordSettings()
Contains settings for generating random words. |
var activeBundledDictionaries: Set<BundledDictionary>
A mutable view of the filenames of the files in activeBundledDictionaryFiles. |
|
var activeBundledDictionaryFiles: MutableSet<String>
The list of bundled dictionary files that are currently active. |
|
var activeUserDictionaries: Set<UserDictionary>
A mutable view of the filenames of the files in activeUserDictionaryFiles. |
|
var activeUserDictionaryFiles: MutableSet<String>
The list of user dictionary files that are currently active. |
|
var bundledDictionaries: Set<BundledDictionary>
A mutable view of the filenames of the files in bundledDictionaryFiles. |
|
var bundledDictionaryFiles: MutableSet<String>
The list of all dictionary files provided by the plugin. |
|
var capitalization: CapitalizationMode
The way in which the generated word should be capitalized. |
|
var enclosure: String
The string that encloses the generated word on both sides. |
|
var maxLength: Int
The maximum length of the generated word, inclusive. |
|
var minLength: Int
The minimum length of the generated word, inclusive. |
|
var userDictionaries: Set<UserDictionary>
A mutable view of the filenames of the files in userDictionaryFiles. |
|
var userDictionaryFiles: MutableSet<String>
The list of all dictionary files registered by the user. |
fun getState(): WordSettings
Returns |
|
fun loadState(state: WordSettings): Unit
Copies the fields of state to |
val default: WordSettings
The persistent |
|
val DEFAULT_CAPITALIZATION: CapitalizationMode
The default value of the capitalization field. |
|
const val DEFAULT_ENCLOSURE: String
The default value of the enclosure field. |
|
const val DEFAULT_MAX_LENGTH: Int
The default value of the maxLength field. |
|
const val DEFAULT_MIN_LENGTH: Int
The default value of the minLength field. |