Package org.eclipse.lsp4j
Class VersionedNotebookDocumentIdentifier
- java.lang.Object
-
- org.eclipse.lsp4j.VersionedNotebookDocumentIdentifier
-
public class VersionedNotebookDocumentIdentifier extends java.lang.ObjectA versioned notebook document identifier.Since 3.17.0
-
-
Constructor Summary
Constructors Constructor Description VersionedNotebookDocumentIdentifier()VersionedNotebookDocumentIdentifier(int version, java.lang.String uri)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object obj)java.lang.StringgetUri()The notebook document's URI.intgetVersion()The version number of this notebook document.inthashCode()voidsetUri(java.lang.String uri)The notebook document's URI.voidsetVersion(int version)The version number of this notebook document.java.lang.StringtoString()
-
-
-
Method Detail
-
getVersion
public int getVersion()
The version number of this notebook document.
-
setVersion
public void setVersion(int version)
The version number of this notebook document.
-
getUri
public java.lang.String getUri()
The notebook document's URI.
-
setUri
public void setUri(java.lang.String uri)
The notebook document's URI.
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
-