com.algolia.model.search.HighlightResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of algoliasearch Show documentation
Show all versions of algoliasearch Show documentation
Java client for Algolia Search API
// Code generated by OpenAPI Generator (https://openapi-generator.tech), manual changes will be lost
// - read more on https://github.com/algolia/api-clients-automation. DO NOT EDIT.
package com.algolia.model.search;
import com.algolia.exceptions.AlgoliaRuntimeException;
import com.algolia.utils.CompoundType;
import com.fasterxml.jackson.annotation.*;
import com.fasterxml.jackson.core.*;
import com.fasterxml.jackson.core.type.TypeReference;
import com.fasterxml.jackson.databind.*;
import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
import com.fasterxml.jackson.databind.deser.std.StdDeserializer;
import com.fasterxml.jackson.databind.ser.std.StdSerializer;
import java.io.IOException;
import java.util.List;
import java.util.logging.Logger;
/** HighlightResult */
@JsonDeserialize(using = HighlightResult.Deserializer.class)
@JsonSerialize(using = HighlightResult.Serializer.class)
public interface HighlightResult extends CompoundType {
static HighlightResult of(HighlightResultOption inside) {
return new HighlightResultHighlightResultOption(inside);
}
static HighlightResult> of(List inside) {
return new HighlightResultListOfHighlightResultOption(inside);
}
class Serializer extends StdSerializer {
public Serializer(Class t) {
super(t);
}
public Serializer() {
this(null);
}
@Override
public void serialize(HighlightResult value, JsonGenerator jgen, SerializerProvider provider) throws IOException {
jgen.writeObject(value.get());
}
}
class Deserializer extends StdDeserializer {
private static final Logger LOGGER = Logger.getLogger(Deserializer.class.getName());
public Deserializer() {
this(HighlightResult.class);
}
public Deserializer(Class> vc) {
super(vc);
}
@Override
public HighlightResult deserialize(JsonParser jp, DeserializationContext ctxt) throws IOException {
JsonNode tree = jp.readValueAsTree();
// deserialize HighlightResultOption
if (tree.isObject()) {
try (JsonParser parser = tree.traverse(jp.getCodec())) {
HighlightResultOption value = parser.readValueAs(new TypeReference() {});
return HighlightResult.of(value);
} catch (Exception e) {
// deserialization failed, continue
LOGGER.finest("Failed to deserialize oneOf HighlightResultOption (error: " + e.getMessage() + ") (type: HighlightResultOption)");
}
}
// deserialize List
if (tree.isArray()) {
try (JsonParser parser = tree.traverse(jp.getCodec())) {
List value = parser.readValueAs(new TypeReference>() {});
return HighlightResult.of(value);
} catch (Exception e) {
// deserialization failed, continue
LOGGER.finest(
"Failed to deserialize oneOf List (error: " + e.getMessage() + ") (type: List)"
);
}
}
throw new AlgoliaRuntimeException(String.format("Failed to deserialize json element: %s", tree));
}
/** Handle deserialization of the 'null' value. */
@Override
public HighlightResult getNullValue(DeserializationContext ctxt) throws JsonMappingException {
throw new JsonMappingException(ctxt.getParser(), "HighlightResult cannot be null");
}
}
}
class HighlightResultHighlightResultOption implements HighlightResult {
private final HighlightResultOption value;
HighlightResultHighlightResultOption(HighlightResultOption value) {
this.value = value;
}
@Override
public HighlightResultOption get() {
return value;
}
}
class HighlightResultListOfHighlightResultOption implements HighlightResult> {
private final List value;
HighlightResultListOfHighlightResultOption(List value) {
this.value = value;
}
@Override
public List get() {
return value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy