org.elasticsearch.search.aggregations.metrics.ParsedHDRPercentileRanks Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of elasticsearch Show documentation
Show all versions of elasticsearch Show documentation
Elasticsearch subproject :server
/*
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
* or more contributor license agreements. Licensed under the Elastic License
* 2.0 and the Server Side Public License, v 1; you may not use this file except
* in compliance with, at your election, the Elastic License 2.0 or the Server
* Side Public License, v 1.
*/
package org.elasticsearch.search.aggregations.metrics;
import org.elasticsearch.xcontent.ObjectParser;
import org.elasticsearch.xcontent.XContentParser;
import java.io.IOException;
import java.util.Iterator;
public class ParsedHDRPercentileRanks extends ParsedPercentileRanks {
@Override
public String getType() {
return InternalHDRPercentileRanks.NAME;
}
@Override
public Iterator iterator() {
final Iterator iterator = super.iterator();
return new Iterator() {
@Override
public boolean hasNext() {
return iterator.hasNext();
}
@Override
public Percentile next() {
Percentile percentile = iterator.next();
return new Percentile(percentile.getValue(), percentile.getPercent());
}
};
}
private static final ObjectParser PARSER = new ObjectParser<>(
ParsedHDRPercentileRanks.class.getSimpleName(),
true,
ParsedHDRPercentileRanks::new
);
static {
ParsedPercentiles.declarePercentilesFields(PARSER);
}
public static ParsedHDRPercentileRanks fromXContent(XContentParser parser, String name) throws IOException {
ParsedHDRPercentileRanks aggregation = PARSER.parse(parser, null);
aggregation.setName(name);
return aggregation;
}
}