Class ArraySlice

    • Constructor Summary

      Constructors 
      Constructor Description
      ArraySlice​(int limit)
      Specifies the number of array elements to return
      ArraySlice​(int skip, int limit)
      Specifies the number of array elements to skip.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.Integer getLimit()  
      java.lang.Integer getSkip()  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • ArraySlice

        public ArraySlice​(int limit)
        Specifies the number of array elements to return
        Parameters:
        limit - the number of array elements to return
      • ArraySlice

        public ArraySlice​(int skip,
                          int limit)
        Specifies the number of array elements to skip.
        Parameters:
        skip - the number of array elements to skip
        limit - the number of array elements to return
    • Method Detail

      • getLimit

        public java.lang.Integer getLimit()
        Returns:
        the limit to apply to the projection
      • getSkip

        public java.lang.Integer getSkip()
        Returns:
        the skip value to apply to the projection