View.DistributionView, View.IntervalView| Modifier and Type | Method and Description |
|---|---|
static View.IntervalView |
create(ViewDescriptor.IntervalViewDescriptor intervalViewDescriptor,
List<IntervalAggregation> intervalAggregations)
Constructs a new
View.IntervalView. |
List<IntervalAggregation> |
getIntervalAggregations()
The
IntervalAggregations associated with this View.IntervalView. |
ViewDescriptor.IntervalViewDescriptor |
getViewDescriptor()
The
ViewDescriptor associated with this View. |
<T> T |
match(Function<View.DistributionView,T> p0,
Function<View.IntervalView,T> p1)
Applies the given match function to the underlying data type.
|
public static View.IntervalView create(ViewDescriptor.IntervalViewDescriptor intervalViewDescriptor, List<IntervalAggregation> intervalAggregations)
View.IntervalView.public List<IntervalAggregation> getIntervalAggregations()
IntervalAggregations associated with this View.IntervalView.
Note: The returned list is unmodifiable, attempts to update it will throw an UnsupportedOperationException.
public ViewDescriptor.IntervalViewDescriptor getViewDescriptor()
ViewViewDescriptor associated with this View.getViewDescriptor in class Viewpublic <T> T match(Function<View.DistributionView,T> p0, Function<View.IntervalView,T> p1)
View