be.doeraene.webcomponents.ui5.configkeys.PageBackgroundDesign.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 PageBackgroundDesign {
def value: String = toString
}
object PageBackgroundDesign extends EnumerationString[PageBackgroundDesign] {
case object Solid extends PageBackgroundDesign
case object Transparent extends PageBackgroundDesign
case object ListPage extends PageBackgroundDesign {
override def value: String = "List"
}
val allValues: List[PageBackgroundDesign] = List(Solid, Transparent, ListPage)
def valueOf(value: PageBackgroundDesign): String = value.value
}