be.doeraene.webcomponents.ui5.configkeys.TableMode.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of web-components-ui5_sjs1_3 Show documentation
Show all versions of web-components-ui5_sjs1_3 Show documentation
Laminar bindings for the web-component library UI5 from SAP
The newest version!
package be.doeraene.webcomponents.ui5.configkeys
sealed trait TableMode {
final def value: String = toString
}
object TableMode extends EnumerationString[TableMode] {
case object MultiSelect extends TableMode
case object SingleSelect extends TableMode
case object None extends TableMode
val allValues: List[TableMode] = List(MultiSelect, SingleSelect, None)
def valueOf(value: TableMode): String = value.value
}