Record Class ScriptLanguageService.Completion

java.lang.Object
java.lang.Record
de.gurkenlabs.litiengine.scripting.ScriptLanguageService.Completion
Enclosing interface:
ScriptLanguageService

public static record ScriptLanguageService.Completion(String label, ScriptLanguageService.CompletionKind kind, String detail, String documentation, String insertText, String returnType, List<ScriptLanguageService.Parameter> parameters, List<ScriptLanguageService.TextEdit> additionalEdits) extends Record
  • Constructor Details

    • Completion

      public Completion(String label, ScriptLanguageService.CompletionKind kind, String detail, String documentation, String insertText, String returnType, List<ScriptLanguageService.Parameter> parameters, List<ScriptLanguageService.TextEdit> additionalEdits)
      Creates an instance of a Completion record class.
      Parameters:
      label - the value for the label record component
      kind - the value for the kind record component
      detail - the value for the detail record component
      documentation - the value for the documentation record component
      insertText - the value for the insertText record component
      returnType - the value for the returnType record component
      parameters - the value for the parameters record component
      additionalEdits - the value for the additionalEdits record component
  • Method Details

    • toString

      public final String toString()
      Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components.
      Specified by:
      toString in class Record
      Returns:
      a string representation of this object
    • hashCode

      public final int hashCode()
      Returns a hash code value for this object. The value is derived from the hash code of each of the record components.
      Specified by:
      hashCode in class Record
      Returns:
      a hash code value for this object
    • equals

      public final boolean equals(Object o)
      Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared with Objects::equals(Object,Object).
      Specified by:
      equals in class Record
      Parameters:
      o - the object with which to compare
      Returns:
      true if this object is the same as the o argument; false otherwise.
    • label

      public String label()
      Returns the value of the label record component.
      Returns:
      the value of the label record component
    • kind

      Returns the value of the kind record component.
      Returns:
      the value of the kind record component
    • detail

      public String detail()
      Returns the value of the detail record component.
      Returns:
      the value of the detail record component
    • documentation

      public String documentation()
      Returns the value of the documentation record component.
      Returns:
      the value of the documentation record component
    • insertText

      public String insertText()
      Returns the value of the insertText record component.
      Returns:
      the value of the insertText record component
    • returnType

      public String returnType()
      Returns the value of the returnType record component.
      Returns:
      the value of the returnType record component
    • parameters

      public List<ScriptLanguageService.Parameter> parameters()
      Returns the value of the parameters record component.
      Returns:
      the value of the parameters record component
    • additionalEdits

      public List<ScriptLanguageService.TextEdit> additionalEdits()
      Returns the value of the additionalEdits record component.
      Returns:
      the value of the additionalEdits record component