java.lang.Object
java.lang.Enum<Mode>
com.github._1c_syntax.bsl.languageserver.configuration.diagnostics.Mode
All Implemented Interfaces:
Serializable, Comparable<Mode>, Constable

public enum Mode extends Enum<Mode>
Режим для учета настроек правил.

См. DiagnosticsOptions.getParameters()

  • Nested Class Summary

    Nested classes/interfaces inherited from class java.lang.Enum

    Enum.EnumDesc<E extends Enum<E>>
  • Enum Constant Summary

    Enum Constants
    Enum Constant
    Description
    Все диагностики считаются включенными.
    Все диагностики, кроме указанных в конфигурации настроек правил, считаются включенными.
    Все диагностики считаются выключенными.
    Все диагностики, включенные по умолчанию (DiagnosticMetadata.activatedByDefault(), считаются включенными.
    Только диагностики, указанные в конфигурации настроек правил, считаются включенными.
  • Method Summary

    Modifier and Type
    Method
    Description
    static Mode
    Returns the enum constant of this class with the specified name.
    static Mode[]
    Returns an array containing the constants of this enum class, in the order they are declared.

    Methods inherited from class java.lang.Object

    getClass, notify, notifyAll, wait, wait, wait
  • Enum Constant Details

    • OFF

      public static final Mode OFF
      Все диагностики считаются выключенными.
    • ON

      public static final Mode ON
      Все диагностики, включенные по умолчанию (DiagnosticMetadata.activatedByDefault(), считаются включенными. Остальные - в соответствии с конфигурацией настроек правил.
    • EXCEPT

      public static final Mode EXCEPT
      Все диагностики, кроме указанных в конфигурации настроек правил, считаются включенными.
    • ONLY

      public static final Mode ONLY
      Только диагностики, указанные в конфигурации настроек правил, считаются включенными.
    • ALL

      public static final Mode ALL
      Все диагностики считаются включенными.
  • Method Details

    • values

      public static Mode[] 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 Mode 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