Class ZipkinDependency


  • public final class ZipkinDependency
    extends java.lang.Object
    • Constructor Detail

      • ZipkinDependency

        @ConstructorProperties({"parent","child","callCount","errorCount"})
        public ZipkinDependency​(java.lang.String parent,
                                java.lang.String child,
                                java.lang.Integer callCount,
                                java.lang.Integer errorCount)
    • Method Detail

      • getParent

        public java.lang.String getParent()
      • getChild

        public java.lang.String getChild()
      • getCallCount

        public java.lang.Integer getCallCount()
      • getErrorCount

        public java.lang.Integer getErrorCount()
      • equals

        public boolean equals​(java.lang.Object o)
        Overrides:
        equals in class java.lang.Object
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class java.lang.Object
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object
      • withParent

        public ZipkinDependency withParent​(java.lang.String parent)
        Returns:
        a clone of this object, except with this updated property (returns this if an identical value is passed).
      • withChild

        public ZipkinDependency withChild​(java.lang.String child)
        Returns:
        a clone of this object, except with this updated property (returns this if an identical value is passed).
      • withCallCount

        public ZipkinDependency withCallCount​(java.lang.Integer callCount)
        Returns:
        a clone of this object, except with this updated property (returns this if an identical value is passed).
      • withErrorCount

        public ZipkinDependency withErrorCount​(java.lang.Integer errorCount)
        Returns:
        a clone of this object, except with this updated property (returns this if an identical value is passed).