Package tech.kronicle.sdk.models
Class GraphEdgeDuration
- java.lang.Object
-
- tech.kronicle.sdk.models.GraphEdgeDuration
-
public final class GraphEdgeDuration extends java.lang.Object
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classGraphEdgeDuration.GraphEdgeDurationBuilder
-
Constructor Summary
Constructors Constructor Description GraphEdgeDuration(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 GraphEdgeDuration.GraphEdgeDurationBuilderbuilder()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()GraphEdgeDuration.GraphEdgeDurationBuildertoBuilder()java.lang.StringtoString()GraphEdgeDurationwithMax(java.lang.Long max)Min percentile is also the 100th percentile.GraphEdgeDurationwithMin(java.lang.Long min)GraphEdgeDurationwithP50(java.lang.Long p50)The 50th percentile is also the median.GraphEdgeDurationwithP90(java.lang.Long p90)GraphEdgeDurationwithP99(java.lang.Long p99)GraphEdgeDurationwithP99Point9(java.lang.Long p99Point9)
-
-
-
Method Detail
-
builder
public static GraphEdgeDuration.GraphEdgeDurationBuilder builder()
-
toBuilder
public GraphEdgeDuration.GraphEdgeDurationBuilder 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 GraphEdgeDuration 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 GraphEdgeDuration 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 GraphEdgeDuration 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 GraphEdgeDuration 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 GraphEdgeDuration 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 GraphEdgeDuration withP99Point9(java.lang.Long p99Point9)
- Returns:
- a clone of this object, except with this updated property (returns
thisif an identical value is passed).
-
-