Enum Class ChangeEventType

java.lang.Object
java.lang.Enum<ChangeEventType>
io.helidon.config.spi.ChangeEventType
All Implemented Interfaces:
Serializable, Comparable<ChangeEventType>, Constable

public enum ChangeEventType extends Enum<ChangeEventType>
Type of changes that can happen in a PollingStrategy.Polled components. The PollingStrategy may use this information to modify its behavior.
  • Enum Constant Details

    • UNCHANGED

      public static final ChangeEventType UNCHANGED
      Nothing is changed.
    • CHANGED

      public static final ChangeEventType CHANGED
      The content is modified.
    • DELETED

      public static final ChangeEventType DELETED
      The content is not present.
    • CREATED

      public static final ChangeEventType CREATED
      The content is now present (was deleted).
  • Method Details

    • values

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