be.doeraene.webcomponents.ui5.configkeys.TabsOverflowMode.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
trait TabsOverflowMode {
final def value: String = toString
}
object TabsOverflowMode extends EnumerationString[TabsOverflowMode] {
case object End extends TabsOverflowMode
case object StartAndEnd extends TabsOverflowMode
val allValues: List[TabsOverflowMode] = List(End, StartAndEnd)
def valueOf(value: TabsOverflowMode): String = value.value
}