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

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

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

object FontScheme {
  lazy val None = FontScheme("None")
  lazy val Major = FontScheme("Major")
  lazy val Minor = FontScheme("Minor")
}

case class FontScheme private (value: String) {

  override def toString: String = value

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy