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

com.norbitltd.spoiwo.model.enums.FontFamily.scala Maven / Gradle / Ivy

There is a newer version: 1.8.0
Show newest version
package com.norbitltd.spoiwo.model.enums

object FontFamily {

  lazy val NotApplicable = FontFamily("NotApplicable")
  lazy val Roman = FontFamily("Roman")
  lazy val Swiss = FontFamily("Swiss")
  lazy val Modern = FontFamily("Modern")
  lazy val Script = FontFamily("Script")
  lazy val Decorative = FontFamily("Decorative")

}

case class FontFamily private (value: String) {

  override def toString: String = value

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy