be.doeraene.webcomponents.ui5.configkeys.AvatarShape.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of web-components-ui5_sjs1_3 Show documentation
Show all versions of web-components-ui5_sjs1_3 Show documentation
Laminar bindings for the web-component library UI5 from SAP
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)
}