Enum AvailableSyntaxHighlighters

    • Method Summary

      All Methods Static Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      org.fxmisc.richtext.model.StyleSpans<java.util.Collection<java.lang.String>> computeHighlighting​(java.lang.String text)
      Computes the syntax highlighting on the given text.
      static java.util.Optional<SyntaxHighlighter> getHighlighterForLanguage​(net.sourceforge.pmd.lang.Language language)
      Gets the highlighter for a language if available.
      java.lang.String getLanguageTerseName()
      Gets the terse name of the language this highlighter cares for.
      static AvailableSyntaxHighlighters valueOf​(java.lang.String name)
      Returns the enum constant of this type with the specified name.
      static AvailableSyntaxHighlighters[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      • Methods inherited from class java.lang.Enum

        clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
      • Methods inherited from class java.lang.Object

        getClass, notify, notifyAll, wait, wait, wait
    • Method Detail

      • values

        public static AvailableSyntaxHighlighters[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (AvailableSyntaxHighlighters c : AvailableSyntaxHighlighters.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static AvailableSyntaxHighlighters valueOf​(java.lang.String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null
      • getLanguageTerseName

        public java.lang.String getLanguageTerseName()
        Description copied from interface: SyntaxHighlighter
        Gets the terse name of the language this highlighter cares for. That's used as a css class for text regions.
        Specified by:
        getLanguageTerseName in interface SyntaxHighlighter
        Returns:
        The terse name of the language
      • computeHighlighting

        public org.fxmisc.richtext.model.StyleSpans<java.util.Collection<java.lang.String>> computeHighlighting​(java.lang.String text)
        Description copied from interface: SyntaxHighlighter
        Computes the syntax highlighting on the given text. The returned spans are exactly the length of the given text.
        Specified by:
        computeHighlighting in interface SyntaxHighlighter
        Parameters:
        text - The text
        Returns:
        The computed style spans
      • getHighlighterForLanguage

        public static java.util.Optional<SyntaxHighlighter> getHighlighterForLanguage​(net.sourceforge.pmd.lang.Language language)
        Gets the highlighter for a language if available.
        Parameters:
        language - Language to look for
        Returns:
        A highlighter, if available