Enum Class NamedTheme

java.lang.Object
java.lang.Enum<NamedTheme>
com.inductiveautomation.ignition.common.gui.NamedTheme
All Implemented Interfaces:
Serializable, Comparable<NamedTheme>, Constable

public enum NamedTheme extends Enum<NamedTheme> implements Serializable
NamedTheme to be applied to CodeEditor TextAreas
  • Enum Constant Details

    • Default

      public static final NamedTheme Default
    • Dark

      public static final NamedTheme Dark
    • VisualStudio

      public static final NamedTheme VisualStudio
    • Disabled

      public static final NamedTheme Disabled
  • Method Details

    • values

      public static NamedTheme[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static NamedTheme valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null
    • getName

      public String getName()
    • getTheme

      public org.fife.ui.rsyntaxtextarea.Theme getTheme()
    • userValues

      public static NamedTheme[] userValues()
    • toString

      public String toString()
      Overrides:
      toString in class Enum<NamedTheme>