EnumMapEntry

data class EnumMapEntry<Value>(val propertyName: String, val value: Value)(source)

An enum-map entry, with its property name and value representation.

Since

0.1.0

Constructors

Link copied to clipboard
constructor(propertyName: String, value: Value)

Properties

Link copied to clipboard

Its property name.

Link copied to clipboard

Its value representation. Can be of any type as denoted by the Value generic.