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

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

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

sealed trait MediaGalleryItemLayout {
  def value: String = toString
}

object MediaGalleryItemLayout extends EnumerationString[MediaGalleryItemLayout] {
  case object Square extends MediaGalleryItemLayout
  case object Wide extends MediaGalleryItemLayout

  val allValues: List[MediaGalleryItemLayout] = List(Square, Wide)

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy