Class DoublePointData
- java.lang.Object
-
- io.opentelemetry.sdk.metrics.data.DoublePointData
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description static DoublePointDatacreate(long startEpochNanos, long epochNanos, io.opentelemetry.api.metrics.common.Labels labels, double value)abstract doublegetValue()Returns the value of the data point.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface io.opentelemetry.sdk.metrics.data.PointData
getEpochNanos, getLabels, getStartEpochNanos
-
-
-
-
Method Detail
-
create
public static DoublePointData create(long startEpochNanos, long epochNanos, io.opentelemetry.api.metrics.common.Labels labels, double value)
-
getValue
public abstract double getValue()
Returns the value of the data point.- Returns:
- the value of the data point.
-
-