be.doeraene.webcomponents.ui5.configkeys.PopupAccessibleRole.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 PopupAccessibleRole {
final def value: String = toString
}
object PopupAccessibleRole extends EnumerationString[PopupAccessibleRole] {
case object AlertDialog extends PopupAccessibleRole
case object Dialog extends PopupAccessibleRole
case object None extends PopupAccessibleRole
val allValues: List[PopupAccessibleRole] = List(AlertDialog, Dialog, None)
def valueOf(value: PopupAccessibleRole): String = value.value
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy