Class Query.OffsetFetch

  • Enclosing class:
    Query

    static final class Query.OffsetFetch
    extends java.lang.Object
    Evaluated values of OFFSET and FETCH clauses.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      (package private) long fetch
      FETCH value.
      (package private) boolean fetchPercent
      Whether FETCH value is a PERCENT value.
      (package private) long offset
      OFFSET value.
    • Constructor Summary

      Constructors 
      Constructor Description
      OffsetFetch​(long offset, long fetch, boolean fetchPercent)  
    • Method Summary

      • Methods inherited from class java.lang.Object

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

      • offset

        final long offset
        OFFSET value.
      • fetch

        final long fetch
        FETCH value.
      • fetchPercent

        final boolean fetchPercent
        Whether FETCH value is a PERCENT value.
    • Constructor Detail

      • OffsetFetch

        OffsetFetch​(long offset,
                    long fetch,
                    boolean fetchPercent)