org.vertexium.Metadata Maven / Gradle / Ivy
package org.vertexium;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.Collection;
import java.util.HashMap;
import java.util.Map;
public class Metadata implements Serializable {
static final long serialVersionUID = 42L;
private Map entries = new HashMap<>();
public static final String KEY_SEPARATOR = "\u001f";
public Metadata add(String key, Object value, Visibility visibility) {
entries.put(toMapKey(key, visibility), new Entry(key, value, visibility));
return this;
}
public void remove(String key, Visibility visibility) {
entries.remove(toMapKey(key, visibility));
}
public void clear() {
entries.clear();
}
public void remove(String key) {
for (Map.Entry e : new ArrayList<>(entries.entrySet())) {
if (e.getValue().getKey().equals(key)) {
entries.remove(e.getKey());
}
}
}
public Collection entrySet() {
return entries.values();
}
public Entry getEntry(String key, Visibility visibility) {
return entries.get(toMapKey(key, visibility));
}
public Entry getEntry(String key) {
Entry entry = null;
for (Map.Entry e : entries.entrySet()) {
if (e.getValue().getKey().equals(key)) {
if (entry != null) {
throw new VertexiumException("Multiple matching entries for key: " + key);
}
entry = e.getValue();
}
}
return entry;
}
public Collection getEntries(String key) {
Collection results = new ArrayList<>();
for (Map.Entry e : entries.entrySet()) {
if (e.getValue().getKey().equals(key)) {
Entry entry = e.getValue();
results.add(entry);
}
}
return results;
}
public Object getValue(String key, Visibility visibility) {
Entry entry = getEntry(key, visibility);
if (entry == null) {
return null;
}
return entry.getValue();
}
public Object getValue(String key) {
Entry entry = getEntry(key);
if (entry == null) {
return null;
}
return entry.getValue();
}
public Collection