Enum ConfigMode

java.lang.Object
java.lang.Enum<ConfigMode>
org.apache.dubbo.config.context.ConfigMode
All Implemented Interfaces:
Serializable, Comparable<ConfigMode>, java.lang.constant.Constable

public enum ConfigMode extends Enum<ConfigMode>
Config processing mode for unique config type, e.g. ApplicationConfig, ModuleConfig, MonitorConfig, SslConfig, MetricsConfig
See Also:
  • AbstractConfigManager.uniqueConfigTypes
  • 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
    Ignore mode: accept first config, ignore later configs
    Override mode: accept last config, override previous config
    Override mode: accept last config, override previous config regardless of whether the attribute of previous config is absent or not
    Override mode: accept last config, override previous config only when the attribute of previous config is absent
    Strict mode: accept only one config for unique config type, throw exceptions if found more than one config for a unique config type.
  • Method Summary

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

    Methods inherited from class java.lang.Enum

    compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf

    Methods inherited from class java.lang.Object

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

    • STRICT

      public static final ConfigMode STRICT
      Strict mode: accept only one config for unique config type, throw exceptions if found more than one config for a unique config type.
    • OVERRIDE

      public static final ConfigMode OVERRIDE
      Override mode: accept last config, override previous config
    • OVERRIDE_ALL

      public static final ConfigMode OVERRIDE_ALL
      Override mode: accept last config, override previous config regardless of whether the attribute of previous config is absent or not
    • OVERRIDE_IF_ABSENT

      public static final ConfigMode OVERRIDE_IF_ABSENT
      Override mode: accept last config, override previous config only when the attribute of previous config is absent
    • IGNORE

      public static final ConfigMode IGNORE
      Ignore mode: accept first config, ignore later configs
  • Method Details

    • values

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