Package io.opencensus.stats
Class ViewData.AggregationWindowData.CumulativeData
- java.lang.Object
-
- io.opencensus.stats.ViewData.AggregationWindowData
-
- io.opencensus.stats.ViewData.AggregationWindowData.CumulativeData
-
- Direct Known Subclasses:
AutoValue_ViewData_AggregationWindowData_CumulativeData
- Enclosing class:
- ViewData.AggregationWindowData
@Deprecated @Immutable public abstract static class ViewData.AggregationWindowData.CumulativeData extends ViewData.AggregationWindowData
Deprecated.since 0.13, please use start and endTimestampinstead.CumulativeAggregationWindowData.- Since:
- 0.8
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class io.opencensus.stats.ViewData.AggregationWindowData
ViewData.AggregationWindowData.CumulativeData, ViewData.AggregationWindowData.IntervalData
-
-
Constructor Summary
Constructors Constructor Description CumulativeData()Deprecated.
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static ViewData.AggregationWindowData.CumulativeDatacreate(Timestamp start, Timestamp end)Deprecated.Constructs a newViewData.AggregationWindowData.CumulativeData.abstract TimestampgetEnd()Deprecated.Returns the endTimestampfor aViewData.AggregationWindowData.CumulativeData.abstract TimestampgetStart()Deprecated.Returns the startTimestampfor aViewData.AggregationWindowData.CumulativeData.<T> Tmatch(Function<? super ViewData.AggregationWindowData.CumulativeData,T> p0, Function<? super ViewData.AggregationWindowData.IntervalData,T> p1, Function<? super ViewData.AggregationWindowData,T> defaultFunction)Deprecated.Applies the given match function to the underlying data type.
-
-
-
Method Detail
-
getStart
public abstract Timestamp getStart()
Deprecated.Returns the startTimestampfor aViewData.AggregationWindowData.CumulativeData.- Returns:
- the start
Timestamp. - Since:
- 0.8
-
getEnd
public abstract Timestamp getEnd()
Deprecated.Returns the endTimestampfor aViewData.AggregationWindowData.CumulativeData.- Returns:
- the end
Timestamp. - Since:
- 0.8
-
match
public final <T> T match(Function<? super ViewData.AggregationWindowData.CumulativeData,T> p0, Function<? super ViewData.AggregationWindowData.IntervalData,T> p1, Function<? super ViewData.AggregationWindowData,T> defaultFunction)
Deprecated.Description copied from class:ViewData.AggregationWindowDataApplies the given match function to the underlying data type.- Specified by:
matchin classViewData.AggregationWindowData
-
create
public static ViewData.AggregationWindowData.CumulativeData create(Timestamp start, Timestamp end)
Deprecated.Constructs a newViewData.AggregationWindowData.CumulativeData.- Since:
- 0.8
-
-