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 aGraphProviderimplementation that provides additional information about its intentions. TheDescriptoris required by thoseGraphProviderimplementations that will be assigned to test suites that useTraversalEngine.Type.COMPUTER.
- 
- 
Required Element SummaryRequired Elements Modifier and Type Required Element Description Class<? extends GraphComputer>computerTheGraphComputerimplementation that theGraphProviderwill use when it constructs aTraversalwithGraphProvider.traversal(Graph)orGraphProvider.traversal(Graph, TraversalStrategy[]).
 
- 
- 
- 
Element Detail- 
computerClass<? extends GraphComputer> computer TheGraphComputerimplementation that theGraphProviderwill use when it constructs aTraversalwithGraphProvider.traversal(Graph)orGraphProvider.traversal(Graph, TraversalStrategy[]). This value should be null if aGraphComputeris not being used.
 
- 
 
-