Skip to content

Commit

Permalink
Comment
Browse files Browse the repository at this point in the history
  • Loading branch information
OndraZizka committed Jun 26, 2014
1 parent 61581ca commit 3827537
Showing 1 changed file with 7 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,22 +15,25 @@
public interface IterationBuilderOver
{
/**
* Configure the iteration variable.
* Sets the name and type of the variable for this iteration's "current element".
* The type server for automatic type check.
*/
public IterationBuilderVar var(Class<? extends WindupVertexFrame> varType, String var);

/**
* Configure the iteration variable.
* Sets the name of the variable for this iteration's "current element".
*/
public IterationBuilderVar var(String var);

/**
* Iterate over the results of a query
* Starts a gremlin query part; the query result is stored under given var name.
* Refer to Gremlin Pipes for the subsequent API.
*/
public IterationQuery queryFor(Class<? extends WindupVertexFrame> varType, String var);

/**
* Iterate over the results of a query
* Starts a gremlin query part; the query result is stored under given var name.
* Refer to Gremlin Pipes for the subsequent API.
*/
public IterationQuery queryFor(String var);
}

0 comments on commit 3827537

Please sign in to comment.