Package tech.kronicle.sdk.models
Class SummaryComponentDependencyDuration
- java.lang.Object
-
- tech.kronicle.sdk.models.SummaryComponentDependencyDuration
-
public final class SummaryComponentDependencyDuration extends java.lang.Object
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classSummaryComponentDependencyDuration.SummaryComponentDependencyDurationBuilder
-
Constructor Summary
Constructors Constructor Description SummaryComponentDependencyDuration(java.lang.Long min, java.lang.Long max, java.lang.Long p50, java.lang.Long p90, java.lang.Long p99, java.lang.Long p99Point9)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static SummaryComponentDependencyDuration.SummaryComponentDependencyDurationBuilderbuilder()booleanequals(java.lang.Object o)java.lang.LonggetMax()Min percentile is also the 100th percentile.java.lang.LonggetMin()java.lang.LonggetP50()The 50th percentile is also the median.java.lang.LonggetP90()java.lang.LonggetP99()java.lang.LonggetP99Point9()inthashCode()SummaryComponentDependencyDuration.SummaryComponentDependencyDurationBuildertoBuilder()java.lang.StringtoString()SummaryComponentDependencyDurationwithMax(java.lang.Long max)Min percentile is also the 100th percentile.SummaryComponentDependencyDurationwithMin(java.lang.Long min)SummaryComponentDependencyDurationwithP50(java.lang.Long p50)The 50th percentile is also the median.SummaryComponentDependencyDurationwithP90(java.lang.Long p90)SummaryComponentDependencyDurationwithP99(java.lang.Long p99)SummaryComponentDependencyDurationwithP99Point9(java.lang.Long p99Point9)
-
-
-
Method Detail
-
builder
public static SummaryComponentDependencyDuration.SummaryComponentDependencyDurationBuilder builder()
-
toBuilder
public SummaryComponentDependencyDuration.SummaryComponentDependencyDurationBuilder toBuilder()
-
getMin
public java.lang.Long getMin()
-
getMax
public java.lang.Long getMax()
Min percentile is also the 100th percentile.
-
getP50
public java.lang.Long getP50()
The 50th percentile is also the median.
-
getP90
public java.lang.Long getP90()
-
getP99
public java.lang.Long getP99()
-
getP99Point9
public java.lang.Long getP99Point9()
-
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
-
withMin
public SummaryComponentDependencyDuration withMin(java.lang.Long min)
- Returns:
- a clone of this object, except with this updated property (returns
thisif an identical value is passed).
-
withMax
public SummaryComponentDependencyDuration withMax(java.lang.Long max)
Min percentile is also the 100th percentile.- Returns:
- a clone of this object, except with this updated property (returns
thisif an identical value is passed).
-
withP50
public SummaryComponentDependencyDuration withP50(java.lang.Long p50)
The 50th percentile is also the median.- Returns:
- a clone of this object, except with this updated property (returns
thisif an identical value is passed).
-
withP90
public SummaryComponentDependencyDuration withP90(java.lang.Long p90)
- Returns:
- a clone of this object, except with this updated property (returns
thisif an identical value is passed).
-
withP99
public SummaryComponentDependencyDuration withP99(java.lang.Long p99)
- Returns:
- a clone of this object, except with this updated property (returns
thisif an identical value is passed).
-
withP99Point9
public SummaryComponentDependencyDuration withP99Point9(java.lang.Long p99Point9)
- Returns:
- a clone of this object, except with this updated property (returns
thisif an identical value is passed).
-
-