public StringPropertyType(DatabaseService db, Long id){
super(db, id);
}
public static StringPropertyType getOrCreateInstance(DatabaseService db, String name) {
VertexTypeImpl vertexType = new VertexTypeImpl(db, getOrCreateByDescriptor(new TypeNodeDescriptor(db, name, getImplementationClass())).getId());
return new StringPropertyType(db, vertexType.getNode().getId());
}