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

io.github.cloudify.scala.spdf.PageOrientation.scala Maven / Gradle / Ivy

package io.github.cloudify.scala.spdf

sealed trait PageOrientation {
  val value: String
}

object Landscape extends PageOrientation {
  override val value = "Landscape"
}

object Portrait extends PageOrientation {
  override val value = "Portrait"
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy