org.elasticsearch.client.ml.job.results.Influence Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of elasticsearch-rest-high-level-client Show documentation
Show all versions of elasticsearch-rest-high-level-client Show documentation
Elasticsearch subproject :client:rest-high-level
/*
* 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.client.ml.job.results;
import org.elasticsearch.xcontent.ConstructingObjectParser;
import org.elasticsearch.xcontent.ParseField;
import org.elasticsearch.xcontent.ToXContentObject;
import org.elasticsearch.xcontent.XContentBuilder;
import java.io.IOException;
import java.util.Collections;
import java.util.List;
import java.util.Objects;
/**
* Influence field name and list of influence field values/score pairs
*/
public class Influence implements ToXContentObject {
/**
* Note all X-Content serialized field names are "influencer" not "influence"
*/
public static final ParseField INFLUENCER = new ParseField("influencer");
public static final ParseField INFLUENCER_FIELD_NAME = new ParseField("influencer_field_name");
public static final ParseField INFLUENCER_FIELD_VALUES = new ParseField("influencer_field_values");
@SuppressWarnings("unchecked")
public static final ConstructingObjectParser PARSER = new ConstructingObjectParser<>(
INFLUENCER.getPreferredName(),
true,
a -> new Influence((String) a[0], (List) a[1])
);
static {
PARSER.declareString(ConstructingObjectParser.constructorArg(), INFLUENCER_FIELD_NAME);
PARSER.declareStringArray(ConstructingObjectParser.constructorArg(), INFLUENCER_FIELD_VALUES);
}
private String field;
private List fieldValues;
Influence(String field, List fieldValues) {
this.field = field;
this.fieldValues = Collections.unmodifiableList(fieldValues);
}
@Override
public XContentBuilder toXContent(XContentBuilder builder, Params params) throws IOException {
builder.startObject();
builder.field(INFLUENCER_FIELD_NAME.getPreferredName(), field);
builder.field(INFLUENCER_FIELD_VALUES.getPreferredName(), fieldValues);
builder.endObject();
return builder;
}
public String getInfluencerFieldName() {
return field;
}
public List getInfluencerFieldValues() {
return fieldValues;
}
@Override
public int hashCode() {
return Objects.hash(field, fieldValues);
}
@Override
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null) {
return false;
}
if (getClass() != obj.getClass()) {
return false;
}
Influence other = (Influence) obj;
return Objects.equals(field, other.field) && Objects.equals(fieldValues, other.fieldValues);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy