forked from tinkerpop/blueprints
-
Notifications
You must be signed in to change notification settings - Fork 0
ReadOnly Implementation
okram edited this page May 14, 2012
·
4 revisions
<dependency>
<groupId>com.tinkerpop.blueprints</groupId>
<artifactId>blueprints-core</artifactId>
<version>??</version>
</dependency>
ReadOnlyGraph
and ReadOnlyIndexableGraph
wraps any Graph
or IndexableGraph
, respectively. The purpose of a ReadOnlyGraph
is to ensure that the graph is not mutated by a mutating method invocation. The following methods throw an UnsupportedOperationException
:
-
Graph:
addVertex()
,removeVertex()
,addEdge()
,removeEdge()
,shutdown()
-
IndexableGraph:
dropIndex()
,createIndex()
-
Element:
setProperty()
,removeProperty()
-
Index:
put()
,remove()