be.doeraene.webcomponents.ui5.configkeys.PopoverHorizontalAlign.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 PopoverHorizontalAlign {
def value: String = toString
}
object PopoverHorizontalAlign extends EnumerationString[PopoverHorizontalAlign] {
case object Center extends PopoverHorizontalAlign
case object Start extends PopoverHorizontalAlign
case object End extends PopoverHorizontalAlign
case object Stretch extends PopoverHorizontalAlign
@deprecated("Left horizontal align has been renamed to Start", since = "2.0.0")
def Left = Start
@deprecated("Right horizontal align has been renamed to End", since = "2.0.0")
def Right = End
val allValues: List[PopoverHorizontalAlign] = deriveAllValues
def valueOf(value: PopoverHorizontalAlign): String = value.value
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy