Module xl

Class EdgeDirection

java.lang.Object
de.grogra.xl.query.EdgeDirection
Direct Known Subclasses:
EdgeDirection.Both, EdgeDirection.Directed, EdgeDirection.Undirected

public class EdgeDirection extends Object
  • Field Details

    • FORWARD_INT

      public static final int FORWARD_INT
      int-code for FORWARD.
      See Also:
    • BACKWARD_INT

      public static final int BACKWARD_INT
      int-code for BACKWARD.
      See Also:
    • UNDIRECTED_INT

      public static final int UNDIRECTED_INT
      int-code for UNDIRECTED.
      See Also:
    • BOTH_INT

      public static final int BOTH_INT
      int-code for BOTH.
      See Also:
    • FORWARD

      public static final EdgeDirection.Forward FORWARD
      Forward traversal direction. This represents a predicate traversal direction from the in-parameter to the out-parameter.
    • BACKWARD

      public static final EdgeDirection.Backward BACKWARD
      Backward traversal direction. This represents a predicate traversal direction from the out-parameter to the in-parameter.
    • UNDIRECTED

      public static final EdgeDirection.Undirected UNDIRECTED
      Arbitrary traversal direction. This represents an arbitrary predicate traversal direction, i.e., from the in-parameter to the out-parameter or from the out-parameter to the in-parameter.
    • BOTH

      public static final EdgeDirection.Both BOTH
      Arbitrary traversal direction. This represents an arbitrary predicate traversal direction, i.e., from the in-parameter to the out-parameter or from the out-parameter to the in-parameter.
  • Method Details