sbt.internal.langserver.ClientCapabilities.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of protocol_2.12 Show documentation
Show all versions of protocol_2.12 Show documentation
sbt is an interactive build tool
The newest version!
/**
* This code is generated using [[https://www.scala-sbt.org/contraband/ sbt-contraband]].
*/
// DO NOT EDIT MANUALLY
package sbt.internal.langserver
final class ClientCapabilities private () extends Serializable {
override def equals(o: Any): Boolean = this.eq(o.asInstanceOf[AnyRef]) || (o match {
case _: ClientCapabilities => true
case _ => false
})
override def hashCode: Int = {
37 * (17 + "sbt.internal.langserver.ClientCapabilities".##)
}
override def toString: String = {
"ClientCapabilities()"
}
private[this] def copy(): ClientCapabilities = {
new ClientCapabilities()
}
}
object ClientCapabilities {
def apply(): ClientCapabilities = new ClientCapabilities()
}