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

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

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

sealed trait TabLayout {
  final def value: String = toString
}

object TabLayout extends EnumerationString[TabLayout] {
  case object Standard extends TabLayout
  case object Inline extends TabLayout

  val allValues: List[TabLayout] = List(Standard, Inline)

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy