Enum Class HandlerType

java.lang.Object
java.lang.Enum<HandlerType>
org.nasdanika.graph.processor.HandlerType
All Implemented Interfaces:
Serializable, Comparable<HandlerType>, Constable

public enum HandlerType extends Enum<HandlerType>
Type of a handler and its corresponding endpoint.
Author:
Pavel
  • 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
    Node's incoming handler to invoke incoming connection's target endpoint or, if the connection is passthrough, source node's outgoing endpoint.
    Node's outgoing handler to invoke outgoing connection's source endpoint or, if the connection is passthrough, target node's incoming endpoint.
    Connection's target handler to invoke source node outgoing endpoint for this connection.
    Connection's source handler to invoke target node incoming endpoint for this connection.
  • Method Summary

    Modifier and Type
    Method
    Description
    Returns the enum constant of this class with the specified name.
    static HandlerType[]
    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

    • SOURCE

      public static final HandlerType SOURCE
      Connection's target handler to invoke source node outgoing endpoint for this connection.
    • TARGET

      public static final HandlerType TARGET
      Connection's source handler to invoke target node incoming endpoint for this connection.
    • OUTGOING

      public static final HandlerType OUTGOING
      Node's outgoing handler to invoke outgoing connection's source endpoint or, if the connection is passthrough, target node's incoming endpoint.
    • INCOMING

      public static final HandlerType INCOMING
      Node's incoming handler to invoke incoming connection's target endpoint or, if the connection is passthrough, source node's outgoing endpoint.
  • Method Details

    • values

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