Class CodeActionKindCapabilities


  • public class CodeActionKindCapabilities
    extends java.lang.Object
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      boolean equals​(java.lang.Object obj)  
      java.util.List<java.lang.String> getValueSet()
      The code action kind values the client supports.
      int hashCode()  
      void setValueSet​(java.util.List<java.lang.String> valueSet)
      The code action kind values the client supports.
      java.lang.String toString()  
      • Methods inherited from class java.lang.Object

        clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • CodeActionKindCapabilities

        public CodeActionKindCapabilities()
      • CodeActionKindCapabilities

        public CodeActionKindCapabilities​(java.util.List<java.lang.String> valueSet)
    • Method Detail

      • getValueSet

        public java.util.List<java.lang.String> getValueSet()
        The code action kind values the client supports. When this property exists the client also guarantees that it will handle values outside its set gracefully and falls back to a default value when unknown.

        See CodeActionKind for some predefined code action kinds.

      • setValueSet

        public void setValueSet​(java.util.List<java.lang.String> valueSet)
        The code action kind values the client supports. When this property exists the client also guarantees that it will handle values outside its set gracefully and falls back to a default value when unknown.

        See CodeActionKind for some predefined code action kinds.

      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object
      • equals

        public boolean equals​(java.lang.Object obj)
        Overrides:
        equals in class java.lang.Object
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class java.lang.Object