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