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

sbt.internal.langserver.SaveOptions.scala Maven / Gradle / Ivy

/**
 * This code is generated using [[https://www.scala-sbt.org/contraband/ sbt-contraband]].
 */

// DO NOT EDIT MANUALLY
package sbt.internal.langserver
/** @param includeText The client is supposed to include the content on save. */
final class SaveOptions private (
  val includeText: Option[Boolean]) extends Serializable {
  
  
  
  override def equals(o: Any): Boolean = this.eq(o.asInstanceOf[AnyRef]) || (o match {
    case x: SaveOptions => (this.includeText == x.includeText)
    case _ => false
  })
  override def hashCode: Int = {
    37 * (37 * (17 + "sbt.internal.langserver.SaveOptions".##) + includeText.##)
  }
  override def toString: String = {
    "SaveOptions(" + includeText + ")"
  }
  private[this] def copy(includeText: Option[Boolean] = includeText): SaveOptions = {
    new SaveOptions(includeText)
  }
  def withIncludeText(includeText: Option[Boolean]): SaveOptions = {
    copy(includeText = includeText)
  }
  def withIncludeText(includeText: Boolean): SaveOptions = {
    copy(includeText = Option(includeText))
  }
}
object SaveOptions {
  
  def apply(includeText: Option[Boolean]): SaveOptions = new SaveOptions(includeText)
  def apply(includeText: Boolean): SaveOptions = new SaveOptions(Option(includeText))
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy