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

org.securegraph.GraphMetadataEntry Maven / Gradle / Ivy

The newest version!
package org.securegraph;

public class GraphMetadataEntry {
    private String key;
    private Object value;

    public GraphMetadataEntry(String key, Object value) {
        this.key = key;
        this.value = value;
    }

    public String getKey() {
        return key;
    }

    public Object getValue() {
        return value;
    }

    @Override
    public String toString() {
        return "GraphMetadataEntry{" +
                "key='" + key + '\'' +
                ", value=" + value +
                '}';
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy