be.doeraene.webcomponents.ui5.configkeys.MediaGalleryMenuHorizontalAlign.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
package be.doeraene.webcomponents.ui5.configkeys
sealed trait MediaGalleryMenuHorizontalAlign {
def value: String = toString
}
object MediaGalleryMenuHorizontalAlign extends EnumerationString[MediaGalleryMenuHorizontalAlign] {
case object Left extends MediaGalleryMenuHorizontalAlign
case object Right extends MediaGalleryMenuHorizontalAlign
val allValues: List[MediaGalleryMenuHorizontalAlign] = List(Left, Right)
def valueOf(value: MediaGalleryMenuHorizontalAlign): String = value.value
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy