be.doeraene.webcomponents.ui5.configkeys.SideContentVisibility.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 SideContentVisibility {
def value: String = toString
}
object SideContentVisibility extends EnumerationString[SideContentVisibility] {
case object AlwaysShow extends SideContentVisibility
case object ShowAboveL extends SideContentVisibility
case object ShowAboveM extends SideContentVisibility
case object ShowAboveS extends SideContentVisibility
case object NeverShow extends SideContentVisibility
val allValues: List[SideContentVisibility] = List(AlwaysShow, ShowAboveL, ShowAboveM, ShowAboveS, NeverShow)
def valueOf(value: SideContentVisibility): String = value.value
}