All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ai.vespa.client.dsl.Annotation Maven / Gradle / Ivy

There is a newer version: 8.458.13
Show newest version
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package ai.vespa.client.dsl;

import java.util.HashMap;
import java.util.Map;

public class Annotation {

    private final Map annotations;

    Annotation() {
        this(new HashMap<>());
    }

    Annotation(Map annotations) {
        this.annotations = annotations;
    }

    public Annotation append(Annotation a) {
        this.annotations.putAll(a.annotations);
        return this;
    }

    public boolean contains(String key) {
        return annotations.containsKey(key);
    }

    public Object get(String key) {
        return annotations.get(key);
    }

    @Override
    public String toString() {
        return annotations == null || annotations.isEmpty() ? "" : Q.toJson(annotations);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy