data class IntegerSettings : Settings<IntegerSettings, IntegerScheme>
The user-configurable collection of schemes applicable to generating integers.
IntegerSettings(schemes: MutableList<IntegerScheme> = DEFAULT_SCHEMES, currentSchemeName: String = DEFAULT_CURRENT_SCHEME_NAME)
The user-configurable collection of schemes applicable to generating integers. |
var currentSchemeName: String
the scheme that is currently active |
|
var schemes: MutableList<IntegerScheme>
the schemes that the user can choose from |
open var currentScheme: SCHEME
The instance of the scheme that is currently active. |
fun deepCopy(): IntegerSettings
Returns a deep copy of the settings and the contained schemes. |
|
fun getState(): IntegerSettings
Returns |
|
fun loadState(state: IntegerSettings): Unit
Copies the fields of |
val default: IntegerSettings
The persistent |
|
const val DEFAULT_CURRENT_SCHEME_NAME: String
The default value of the currentSchemeName field. |
|
val DEFAULT_SCHEMES: MutableList<IntegerScheme>
The default value of the schemes field. |