be.doeraene.webcomponents.ui5.configkeys.PopoverVerticalAlign.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 PopoverVerticalAlign {
def value: String = toString
}
object PopoverVerticalAlign extends EnumerationString[PopoverVerticalAlign] {
case object Center extends PopoverVerticalAlign
case object Top extends PopoverVerticalAlign
case object Bottom extends PopoverVerticalAlign
case object Stretch extends PopoverVerticalAlign
val allValues: List[PopoverVerticalAlign] = List(Center, Top, Bottom, Stretch)
def valueOf(value: PopoverVerticalAlign): String = value.value
}