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

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

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

import be.doeraene.webcomponents.ui5.configkeys.EnumerationString

sealed trait CarouselArrowsPlacement {
  def value: String = toString
}

object CarouselArrowsPlacement extends EnumerationString[CarouselArrowsPlacement] {

  case object Content extends CarouselArrowsPlacement
  case object Navigation extends CarouselArrowsPlacement

  val allValues: List[CarouselArrowsPlacement] = List(Content, Navigation)

  override def valueOf(value: CarouselArrowsPlacement): String = value.value

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy