Class ReservedKeysVerificationStrategy

All Implemented Interfaces:
Serializable, Comparable<Class<? extends TraversalStrategy>>, TraversalStrategy<TraversalStrategy.VerificationStrategy>, TraversalStrategy.VerificationStrategy

public class ReservedKeysVerificationStrategy extends AbstractWarningVerificationStrategy
This verification strategy detects property keys that should not be used by the traversal. A term may be reserved by a particular graph implementation or as a convention given best practices.
Author:
Stephen Mallette (http://stephen.genoprime.com) * @example
  * __.addV("person").property("id", 123)           // throws an IllegalStateException
  * __.addE("knows").property("label", "green")     // throws an IllegalStateException
  * 
See Also: