Class SliceExpression

java.lang.Object
software.amazon.smithy.jmespath.JmespathExpression
software.amazon.smithy.jmespath.ast.SliceExpression

public final class SliceExpression extends JmespathExpression
Represents a slice expression, containing an optional zero-based start offset, zero-based stop offset, and step.
See Also:
  • Constructor Details

    • SliceExpression

      public SliceExpression(Integer start, Integer stop, int step)
    • SliceExpression

      public SliceExpression(Integer start, Integer stop, int step, int line, int column)
  • Method Details

    • accept

      public <T> T accept(ExpressionVisitor<T> visitor)
      Description copied from class: JmespathExpression
      Visits a node using a double-dispatch visitor.
      Specified by:
      accept in class JmespathExpression
      Type Parameters:
      T - Type of value the visitor returns.
      Parameters:
      visitor - Visitor to accept on the node.
      Returns:
      Returns the result of applying the visitor.
    • getStart

      public OptionalInt getStart()
    • getStop

      public OptionalInt getStop()
    • getStep

      public int getStep()
    • equals

      public boolean equals(Object o)
      Overrides:
      equals in class Object
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class Object
    • toString

      public String toString()
      Overrides:
      toString in class Object