Class SliceExpression
- java.lang.Object
-
- software.amazon.awssdk.codegen.jmespath.component.SliceExpression
-
public class SliceExpression extends Object
A slice expression allows you to select a contiguous subset of an array. A slice has a start, stop, and step value. The general form of a slice is [start:stop:step], but each component is optional and can be omitted. https://jmespath.org/specification.html#slices
-
-
Constructor Summary
Constructors Constructor Description SliceExpression(Integer start, Integer stop, Integer step)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description OptionalInt
start()
OptionalInt
step()
OptionalInt
stop()
-
-
-
Method Detail
-
start
public OptionalInt start()
-
stop
public OptionalInt stop()
-
step
public OptionalInt step()
-
-