Package tech.kronicle.sdk.models.zipkin
Class ZipkinDependency
- java.lang.Object
-
- tech.kronicle.sdk.models.zipkin.ZipkinDependency
-
public final class ZipkinDependency extends java.lang.Object
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classZipkinDependency.ZipkinDependencyBuilder
-
Constructor Summary
Constructors Constructor Description ZipkinDependency(java.lang.String parent, java.lang.String child, java.lang.Integer callCount, java.lang.Integer errorCount)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ZipkinDependency.ZipkinDependencyBuilderbuilder()booleanequals(java.lang.Object o)java.lang.IntegergetCallCount()java.lang.StringgetChild()java.lang.IntegergetErrorCount()java.lang.StringgetParent()inthashCode()ZipkinDependency.ZipkinDependencyBuildertoBuilder()java.lang.StringtoString()ZipkinDependencywithCallCount(java.lang.Integer callCount)ZipkinDependencywithChild(java.lang.String child)ZipkinDependencywithErrorCount(java.lang.Integer errorCount)ZipkinDependencywithParent(java.lang.String parent)
-
-
-
Method Detail
-
builder
public static ZipkinDependency.ZipkinDependencyBuilder builder()
-
toBuilder
public ZipkinDependency.ZipkinDependencyBuilder toBuilder()
-
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:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
withParent
public ZipkinDependency withParent(java.lang.String parent)
- Returns:
- a clone of this object, except with this updated property (returns
thisif 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
thisif 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
thisif 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
thisif an identical value is passed).
-
-