Package org.apache.druid.query.filter
Class FilterBundle.IndexBundleInfo
- java.lang.Object
-
- org.apache.druid.query.filter.FilterBundle.IndexBundleInfo
-
- Enclosing class:
- FilterBundle
public static class FilterBundle.IndexBundleInfo extends Object
-
-
Constructor Summary
Constructors Constructor Description IndexBundleInfo(Supplier<String> filterString, int selectionSize, long buildTimeNs, List<FilterBundle.IndexBundleInfo> indexes)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Stringdescribe()Return a multiline description string, suitable for comparisons in tests.longgetBuildTimeNs()StringgetFilter()List<FilterBundle.IndexBundleInfo>getIndexes()intgetSelectionSize()StringtoString()
-
-
-
Constructor Detail
-
IndexBundleInfo
public IndexBundleInfo(Supplier<String> filterString, int selectionSize, long buildTimeNs, @Nullable List<FilterBundle.IndexBundleInfo> indexes)
-
-
Method Detail
-
getFilter
public String getFilter()
-
getSelectionSize
public int getSelectionSize()
-
getBuildTimeNs
public long getBuildTimeNs()
-
getIndexes
public List<FilterBundle.IndexBundleInfo> getIndexes()
-
describe
public String describe()
Return a multiline description string, suitable for comparisons in tests.
-
-