Ejemplo n.º 1
0
 void removeEntry(VeriniceGraphResultEntry e) {
   log.debug("remove it self: " + e.getColumnKey());
   entries.remove(e.getColumnKey());
 }
Ejemplo n.º 2
0
 void addEntry(VeriniceGraphResultEntry e) {
   entries.put(e.getColumnKey(), e);
   e.add(this);
 }
Ejemplo n.º 3
0
  Map<String, String> getExpandedRow() {
    Map<String, String> row = new HashMap<>();
    for (VeriniceGraphResultEntry e : entries.values()) if (e != null) e.getEntries(row);

    return row;
  }
Ejemplo n.º 4
0
 boolean contains(VeriniceGraphResultEntry e) {
   return entries.containsKey(e.getColumnKey());
 }