Record Class RouteTopologyDumper.TopologyNode

java.lang.Object
java.lang.Record
org.apache.camel.spi.RouteTopologyDumper.TopologyNode
Record Components:
routeId - the route id
description - the route description (may be null)
from - the input endpoint URI (scheme:context-path, query parameters stripped)
fromScheme - the component scheme of the input endpoint
nodeType - the type of node: "route" for regular routes, "trigger" for timer/quartz/cron/scheduler
Enclosing interface:
RouteTopologyDumper

public static record RouteTopologyDumper.TopologyNode(String routeId, String description, String from, String fromScheme, String nodeType) extends Record
A node in the topology representing a route.
Since:
4.21
  • Constructor Details

    • TopologyNode

      public TopologyNode(String routeId, String description, String from, String fromScheme, String nodeType)
      Creates an instance of a TopologyNode record class.
      Parameters:
      routeId - the value for the routeId record component
      description - the value for the description record component
      from - the value for the from record component
      fromScheme - the value for the fromScheme record component
      nodeType - the value for the nodeType record component
  • Method Details

    • toString

      public final String toString()
      Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components.
      Specified by:
      toString in class Record
      Returns:
      a string representation of this object
    • hashCode

      public final int hashCode()
      Returns a hash code value for this object. The value is derived from the hash code of each of the record components.
      Specified by:
      hashCode in class Record
      Returns:
      a hash code value for this object
    • equals

      public final boolean equals(Object o)
      Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared with Objects::equals(Object,Object).
      Specified by:
      equals in class Record
      Parameters:
      o - the object with which to compare
      Returns:
      true if this object is the same as the o argument; false otherwise.
    • routeId

      public String routeId()
      Returns the value of the routeId record component.
      Returns:
      the value of the routeId record component
    • description

      public String description()
      Returns the value of the description record component.
      Returns:
      the value of the description record component
    • from

      public String from()
      Returns the value of the from record component.
      Returns:
      the value of the from record component
    • fromScheme

      public String fromScheme()
      Returns the value of the fromScheme record component.
      Returns:
      the value of the fromScheme record component
    • nodeType

      public String nodeType()
      Returns the value of the nodeType record component.
      Returns:
      the value of the nodeType record component