166167168169170171172173174
@Override public String getIdOfVertex(Vertex objectVertex) { Object value = objectVertex.getProperty(Properties.value.name()); if (value == null) { throw new VertexHasNoPropertyException("vertex " + GraphUtils.toString(objectVertex) + " has no " + Properties.value + " property defined."); } return value.toString(); }
171172173174175176177178179
200201202203204205206207208