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

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

The newest version!
package be.doeraene.webcomponents.ui5.configkeys

sealed trait MediaGalleryLayout {
  def value: String = toString
}

object MediaGalleryLayout extends EnumerationString[MediaGalleryLayout] {
  case object Auto extends MediaGalleryLayout
  case object Vertical extends MediaGalleryLayout
  case object Horizontal extends MediaGalleryLayout

  val allValues: List[MediaGalleryLayout] = List(Auto, Vertical, Horizontal)

  def valueOf(value: MediaGalleryLayout): String = value.value

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy