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

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

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

object CellVerticalAlignment {

  lazy val Bottom = CellVerticalAlignment("Bottom")
  lazy val Center = CellVerticalAlignment("Center")
  lazy val Disturbed = CellVerticalAlignment("Disturbed")
  lazy val Justify = CellVerticalAlignment("Justify")
  lazy val Top = CellVerticalAlignment("Top")

}

case class CellVerticalAlignment private (value: String) {
  override def toString: String = value
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy