Package org.apache.tinkerpop.gremlin
Annotation Type GraphProvider.Descriptor
-
@Retention(RUNTIME) @Target(TYPE) @Inherited public static @interface GraphProvider.Descriptor
An annotation to be applied to aGraphProvider
implementation that provides additional information about its intentions. TheDescriptor
is required by thoseGraphProvider
implementations that will be assigned to test suites that useTraversalEngine.Type.COMPUTER
.
-
-
Required Element Summary
Required Elements Modifier and Type Required Element Description Class<? extends GraphComputer>
computer
TheGraphComputer
implementation that theGraphProvider
will use when it constructs aTraversal
withGraphProvider.traversal(Graph)
orGraphProvider.traversal(Graph, TraversalStrategy[])
.
-
-
-
Element Detail
-
computer
Class<? extends GraphComputer> computer
TheGraphComputer
implementation that theGraphProvider
will use when it constructs aTraversal
withGraphProvider.traversal(Graph)
orGraphProvider.traversal(Graph, TraversalStrategy[])
. This value should be null if aGraphComputer
is not being used.
-
-