Java Code Examples for org.apache.tinkerpop.gremlin.structure.util.StringFactory#stepString()

The following examples show how to use org.apache.tinkerpop.gremlin.structure.util.StringFactory#stepString() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: HBaseVertexStep.java    From hgraphdb with Apache License 2.0 5 votes vote down vote up
@Override
public String toString() {
    if (this.hasContainers.isEmpty())
        return super.toString();
    else
        return StringFactory.stepString(this, getDirection(), Arrays.asList(getEdgeLabels()), getReturnClass().getSimpleName().toLowerCase(), this.hasContainers);
}
 
Example 2
Source File: WherePredicateStep.java    From tinkerpop with Apache License 2.0 4 votes vote down vote up
@Override
public String toString() {
    // TODO: revert the predicates to their string form?
    return StringFactory.stepString(this, this.startKey, this.predicate, this.traversalRing);
}
 
Example 3
Source File: IoStep.java    From tinkerpop with Apache License 2.0 4 votes vote down vote up
@Override
public String toString() {
    return StringFactory.stepString(this, file, this.parameters);
}
 
Example 4
Source File: SqlgComputerAwareStep.java    From sqlg with MIT License 4 votes vote down vote up
@Override
public String toString() {
    return StringFactory.stepString(this);
}
 
Example 5
Source File: SelectOneStep.java    From tinkerpop with Apache License 2.0 4 votes vote down vote up
@Override
public String toString() {
    return StringFactory.stepString(this, this.pop, this.selectKey, this.selectTraversal);
}
 
Example 6
Source File: GroupSideEffectStep.java    From tinkerpop with Apache License 2.0 4 votes vote down vote up
@Override
public String toString() {
    return StringFactory.stepString(this, this.sideEffectKey, this.keyTraversal, this.valueTraversal);
}
 
Example 7
Source File: SqlgUnionStepBarrier.java    From sqlg with MIT License 4 votes vote down vote up
@Override
public String toString() {
    return StringFactory.stepString(this, this.globalTraversals);
}
 
Example 8
Source File: HasStep.java    From tinkerpop with Apache License 2.0 4 votes vote down vote up
@Override
public String toString() {
    return StringFactory.stepString(this, this.hasContainers);
}
 
Example 9
Source File: AddVertexStartStep.java    From tinkerpop with Apache License 2.0 4 votes vote down vote up
@Override
public String toString() {
    return StringFactory.stepString(this, this.parameters);
}
 
Example 10
Source File: NoOpBarrierStep.java    From tinkerpop with Apache License 2.0 4 votes vote down vote up
@Override
public String toString() {
    return StringFactory.stepString(this, this.maxBarrierSize == Integer.MAX_VALUE ? null : this.maxBarrierSize);
}
 
Example 11
Source File: DedupGlobalStep.java    From tinkerpop with Apache License 2.0 4 votes vote down vote up
@Override
public String toString() {
    return StringFactory.stepString(this, this.dedupLabels, this.dedupTraversal);
}
 
Example 12
Source File: ConnectedComponentVertexProgramStep.java    From tinkerpop with Apache License 2.0 4 votes vote down vote up
@Override
public String toString() {
    return StringFactory.stepString(this, this.clusterProperty, new GraphFilter(this.computer));
}
 
Example 13
Source File: JanusGraphPropertiesStep.java    From grakn with GNU Affero General Public License v3.0 4 votes vote down vote up
@Override
public String toString() {
    return this.hasContainers.isEmpty() ? super.toString() : StringFactory.stepString(this, this.hasContainers);
}
 
Example 14
Source File: AbstractStep.java    From tinkerpop with Apache License 2.0 4 votes vote down vote up
@Override
public String toString() {
    return StringFactory.stepString(this);
}
 
Example 15
Source File: AggregateLocalStep.java    From tinkerpop with Apache License 2.0 4 votes vote down vote up
@Override
public String toString() {
    return StringFactory.stepString(this, this.sideEffectKey, this.storeTraversal);
}
 
Example 16
Source File: GroupStep.java    From tinkerpop with Apache License 2.0 4 votes vote down vote up
@Override
public String toString() {
    return StringFactory.stepString(this, this.keyTraversal, this.valueTraversal);
}
 
Example 17
Source File: LocalStep.java    From tinkerpop with Apache License 2.0 4 votes vote down vote up
@Override
public String toString() {
    return StringFactory.stepString(this, this.localTraversal);
}
 
Example 18
Source File: CollectingBarrierStep.java    From tinkerpop with Apache License 2.0 4 votes vote down vote up
@Override
public String toString() {
    return StringFactory.stepString(this, this.maxBarrierSize == Integer.MAX_VALUE ? null : this.maxBarrierSize);
}
 
Example 19
Source File: TinkerCountGlobalStep.java    From tinkergraph-gremlin with Apache License 2.0 4 votes vote down vote up
@Override
public String toString() {
    return StringFactory.stepString(this, this.elementClass.getSimpleName().toLowerCase());
}
 
Example 20
Source File: AddEdgeStartStep.java    From tinkerpop with Apache License 2.0 4 votes vote down vote up
@Override
public String toString() {
    return StringFactory.stepString(this, this.parameters.toString());
}