ValueEntry

data class ValueEntry<T : Any>(    val fromVersion: Int,     val defaultValue: T,     val updateStrategy: ConfigurationUpdateStrategy) : Comparable<DynamicConfigurationValue.ValueEntry<T>>

Represents the defaultValue of type T that shall be applied from fromVersion with updateStrategy.

Constructors

Link copied to clipboard
fun <T : Any> ValueEntry(    fromVersion: Int,     defaultValue: T,     updateStrategy: ConfigurationUpdateStrategy)

Properties

Link copied to clipboard
val defaultValue: T
Link copied to clipboard
val fromVersion: Int
Link copied to clipboard
val updateStrategy: ConfigurationUpdateStrategy

Functions

Link copied to clipboard
open operator override fun compareTo(other: DynamicConfigurationValue.ValueEntry<T>): Int