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

spoiwo.model.enums.CellStyleInheritance.scala Maven / Gradle / Ivy

The newest version!
package spoiwo.model.enums

object CellStyleInheritance {
  val CellOnly: CellStyleInheritance = CellStyleInheritance("CellOnly")
  val CellThenRow: CellStyleInheritance = CellStyleInheritance("CellThenRow")
  val CellThenColumn: CellStyleInheritance = CellStyleInheritance("CellThenColumn")
  val CellThenSheet: CellStyleInheritance = CellStyleInheritance("CellThenSheet")
  val CellThenRowThenSheet: CellStyleInheritance = CellStyleInheritance("CellThenRowThenSheet")
  val CellThenColumnThenSheet: CellStyleInheritance = CellStyleInheritance("CellThenColumnThenSheet")
  val CellThenRowThenColumn: CellStyleInheritance = CellStyleInheritance("CellThenRowThenColumn")
  val CellThenColumnThenRow: CellStyleInheritance = CellStyleInheritance("CellThenColumnThenRow")
  val CellThenRowThenColumnThenSheet: CellStyleInheritance = CellStyleInheritance("CellThenRowThenColumnThenSheet")
  val CellThenColumnThenRowThenSheet: CellStyleInheritance = CellStyleInheritance("CellThenColumnThenRowThenSheet")
}

case class CellStyleInheritance private (value: String) {

  override def toString: String = value

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy