be.doeraene.webcomponents.ui5.configkeys.BarDesign.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 BarDesign {
final def value: String = toString
}
object BarDesign extends EnumerationString[BarDesign] {
case object Header extends BarDesign
case object Subheader extends BarDesign
case object Footer extends BarDesign
case object FloatingFooter extends BarDesign
val allValues: List[BarDesign] = deriveAllValues
def valueOf(value: BarDesign): String = value.value
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy