java.lang.Object
java.lang.Enum<ETheme>
org.primefaces.extensions.model.monacoeditor.ETheme
All Implemented Interfaces:
Serializable, Comparable<ETheme>

public enum ETheme extends Enum<ETheme>
r theme for the Monaco Code editor
  • Enum Constant Details

    • VS

      public static final ETheme VS
      The standard Visual Studio light theme.
    • VS_DARK

      public static final ETheme VS_DARK
      The standard Visual Studio dark theme.
    • HC_BLACK

      public static final ETheme HC_BLACK
      The high-contrast theme for improved accessibility.
  • Method Details

    • values

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

      public static ETheme 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
    • toString

      public String toString()
      Overrides:
      toString in class Enum<ETheme>
    • parseString

      public static ETheme parseString(String name)