Enum Theme

    • Enum Constant Detail

      • DEFAULT

        public static final Theme DEFAULT
      • DAY_3024

        public static final Theme DAY_3024
      • DUOTONE_LIGHT

        public static final Theme DUOTONE_LIGHT
      • BASE16_LIGHT

        public static final Theme BASE16_LIGHT
      • ECLIPSE

        public static final Theme ECLIPSE
      • ELEGANT

        public static final Theme ELEGANT
      • MDN_LIKE

        public static final Theme MDN_LIKE
      • NEAT

        public static final Theme NEAT
      • NEO

        public static final Theme NEO
      • PARAISO_LIGHT

        public static final Theme PARAISO_LIGHT
      • SOLARIZED

        public static final Theme SOLARIZED
      • TTCN

        public static final Theme TTCN
      • XQ_LIGHT

        public static final Theme XQ_LIGHT
      • YETI

        public static final Theme YETI
      • NIGHT_3024

        public static final Theme NIGHT_3024
      • ABCDEF

        public static final Theme ABCDEF
      • AMBIANCE

        public static final Theme AMBIANCE
      • BASE16_DARK

        public static final Theme BASE16_DARK
      • BESPIN

        public static final Theme BESPIN
      • BLACKBOARD

        public static final Theme BLACKBOARD
      • COBALT

        public static final Theme COBALT
      • COLORFORTH

        public static final Theme COLORFORTH
      • DRACULA

        public static final Theme DRACULA
      • DUOTONE_DARK

        public static final Theme DUOTONE_DARK
      • ERLANG_DARK

        public static final Theme ERLANG_DARK
      • HOPSCOTCH

        public static final Theme HOPSCOTCH
      • ICECODER

        public static final Theme ICECODER
      • ISOTOPE

        public static final Theme ISOTOPE
      • LESSER_DARK

        public static final Theme LESSER_DARK
      • LIQUIBYTE

        public static final Theme LIQUIBYTE
      • MATERIAL

        public static final Theme MATERIAL
      • MBO

        public static final Theme MBO
      • MIDNIGHT

        public static final Theme MIDNIGHT
      • MONOKAI

        public static final Theme MONOKAI
      • NIGHT

        public static final Theme NIGHT
      • PARAISO_DARK

        public static final Theme PARAISO_DARK
      • PASTEL_ON_DARK

        public static final Theme PASTEL_ON_DARK
      • RAILSCASTS

        public static final Theme RAILSCASTS
      • RUBYBLUE

        public static final Theme RUBYBLUE
      • SETI

        public static final Theme SETI
      • THE_MATRIX

        public static final Theme THE_MATRIX
      • TOMORROW_NIGHT_BRIGHT

        public static final Theme TOMORROW_NIGHT_BRIGHT
      • TOMORROW_NIGHT_EIGHTIES

        public static final Theme TOMORROW_NIGHT_EIGHTIES
      • TWILIGHT

        public static final Theme TWILIGHT
      • VIBRANT_INK

        public static final Theme VIBRANT_INK
      • XQ_DARK

        public static final Theme XQ_DARK
      • ZENBURN

        public static final Theme ZENBURN
    • Method Detail

      • values

        public static Theme[] 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 (Theme c : Theme.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static Theme valueOf​(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:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null
      • isDark

        public boolean isDark()