Enum Class AbstractHandler.Type

java.lang.Object
java.lang.Enum<AbstractHandler.Type>
tigase.eventbus.impl.AbstractHandler.Type
All Implemented Interfaces:
Serializable, Comparable<AbstractHandler.Type>, Constable
Enclosing class:
AbstractHandler

public static enum AbstractHandler.Type extends Enum<AbstractHandler.Type>
Defines what type of event is expected by Handler.
  • Enum Constant Details

    • object

      public static final AbstractHandler.Type object
      Only non-XML events. XML events will be ignored.
    • element

      public static final AbstractHandler.Type element
      Only XML events. Non-XML events will be converted to XML.
    • asIs

      public static final AbstractHandler.Type asIs
      As is. Without conversion.
  • Method Details

    • values

      public static AbstractHandler.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 AbstractHandler.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