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

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

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

sealed trait AvatarShape {
  def name: String = toString
}

object AvatarShape extends EnumerationString[AvatarShape] {
  case object Circle extends AvatarShape
  case object Square extends AvatarShape

  def valueOf(value: AvatarShape): String = value.name

  val allValues: List[AvatarShape] = List(Circle, Square)
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy