org.elasticsearch.client.ml.inference.preprocessing.Multi 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.inference.preprocessing;
import org.elasticsearch.client.ml.inference.NamedXContentObjectHelper;
import org.elasticsearch.xcontent.ConstructingObjectParser;
import org.elasticsearch.xcontent.ParseField;
import org.elasticsearch.xcontent.ToXContent;
import org.elasticsearch.xcontent.XContentBuilder;
import org.elasticsearch.xcontent.XContentParser;
import java.io.IOException;
import java.util.List;
import java.util.Objects;
/**
* Multi-PreProcessor for chaining together multiple processors
*/
public class Multi implements PreProcessor {
public static final String NAME = "multi_encoding";
public static final ParseField PROCESSORS = new ParseField("processors");
public static final ParseField CUSTOM = new ParseField("custom");
@SuppressWarnings("unchecked")
public static final ConstructingObjectParser PARSER = new ConstructingObjectParser<>(
NAME,
true,
a -> new Multi((List) a[0], (Boolean) a[1])
);
static {
PARSER.declareNamedObjects(
ConstructingObjectParser.constructorArg(),
(p, c, n) -> p.namedObject(PreProcessor.class, n, null),
(_unused) -> {/* Does not matter client side*/ },
PROCESSORS
);
PARSER.declareBoolean(ConstructingObjectParser.optionalConstructorArg(), CUSTOM);
}
public static Multi fromXContent(XContentParser parser) {
return PARSER.apply(parser, null);
}
private final List processors;
private final Boolean custom;
Multi(List processors, Boolean custom) {
this.processors = Objects.requireNonNull(processors, PROCESSORS.getPreferredName());
this.custom = custom;
}
@Override
public String getName() {
return NAME;
}
@Override
public XContentBuilder toXContent(XContentBuilder builder, ToXContent.Params params) throws IOException {
builder.startObject();
NamedXContentObjectHelper.writeNamedObjects(builder, params, true, PROCESSORS.getPreferredName(), processors);
if (custom != null) {
builder.field(CUSTOM.getPreferredName(), custom);
}
builder.endObject();
return builder;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
Multi multi = (Multi) o;
return Objects.equals(multi.processors, processors) && Objects.equals(custom, multi.custom);
}
@Override
public int hashCode() {
return Objects.hash(custom, processors);
}
public static Builder builder(List processors) {
return new Builder(processors);
}
public static class Builder {
private final List processors;
private Boolean custom;
public Builder(List processors) {
this.processors = processors;
}
public Builder setCustom(boolean custom) {
this.custom = custom;
return this;
}
public Multi build() {
return new Multi(processors, custom);
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy