Class MarkupKind


  • public final class MarkupKind
    extends java.lang.Object
    Describes the content type that a client supports in various result literals like Hover, ParameterInformation or CompletionItem.

    Please note that MarkupKinds must not start with a $. These kinds are reserved for internal usage.

    Since 3.3.0

    • Field Summary

      Fields 
      Modifier and Type Field Description
      static java.lang.String MARKDOWN
      Markdown is supported as a content format.
      static java.lang.String PLAINTEXT
      Plain text is supported as a content format.
    • Method Summary

      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • PLAINTEXT

        public static final java.lang.String PLAINTEXT
        Plain text is supported as a content format.
        See Also:
        Constant Field Values
      • MARKDOWN

        public static final java.lang.String MARKDOWN
        Markdown is supported as a content format.
        See Also:
        Constant Field Values