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

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

There is a newer version: 2.0.0
Show newest version
package be.doeraene.webcomponents.ui5.configkeys

sealed trait WizardContentLayout {
  def value: String = toString
}

object WizardContentLayout extends EnumerationString[WizardContentLayout] {
  case object MultiSteps  extends WizardContentLayout
  case object SingleSteps extends WizardContentLayout

  val allValues: List[WizardContentLayout] = List(MultiSteps, SingleSteps)

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy