overflowdb.OdbElement Maven / Gradle / Ivy
package overflowdb;
import java.util.Map;
public interface OdbElement {
String label();
// TODO drop suffix `2` after tinkerpop interface is gone
OdbGraph graph2();
// TODO drop suffix `2` after tinkerpop interface is gone
P property2(String propertyKey);
/** Map with all properties */
Map propertyMap();
void setProperty(String key, P value);
void remove();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy