All Downloads are FREE. Search and download functionalities are using the official Maven repository.

be.doeraene.webcomponents.ui5.configkeys.PopoverHorizontalAlign.scala Maven / Gradle / Ivy

There is a newer version: 2.0.0
Show 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 Left extends PopoverHorizontalAlign
  case object Right extends PopoverHorizontalAlign
  case object Stretch extends PopoverHorizontalAlign

  val allValues: List[PopoverHorizontalAlign] = List(Center, Left, Right, Stretch)

  def valueOf(value: PopoverHorizontalAlign): String = value.value
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy