Enum Class TopologyChange.Type

java.lang.Object
java.lang.Enum<TopologyChange.Type>
org.axonframework.axonserver.connector.TopologyChange.Type
All Implemented Interfaces:
Serializable, Comparable<TopologyChange.Type>, Constable
Enclosing class:
TopologyChange

public static enum TopologyChange.Type extends Enum<TopologyChange.Type>
The enumeration referencing the possible TopologyChange types.
  • Enum Constant Details

    • COMMAND_HANDLER_ADDED

      public static final TopologyChange.Type COMMAND_HANDLER_ADDED
      A change type signalling a command handler was added.
    • COMMAND_HANDLER_REMOVED

      public static final TopologyChange.Type COMMAND_HANDLER_REMOVED
      A change type signalling a command handler was removed.
    • QUERY_HANDLER_ADDED

      public static final TopologyChange.Type QUERY_HANDLER_ADDED
      A change type signalling a query handler was added.
    • QUERY_HANDLER_REMOVED

      public static final TopologyChange.Type QUERY_HANDLER_REMOVED
      A change type signalling a query handler was removed.
    • RESET

      public static final TopologyChange.Type RESET
      A change type signalling the connection broke down, willingly or not, resulting in a complete reset.
  • Method Details

    • values

      public static TopologyChange.Type[] 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 TopologyChange.Type 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