Usage
Signature:
interface FetchByOffsetCapability
Typescript Import Format
//To use this interface, import as below.
import {FetchByOffsetCapability} from "ojs/ojdataprovider";
For additional information visit:
Fields
- 
    
    
(nullable) attributeFilter :AttributeFilterCapability
 - 
    
      Optional detailed attribute filter capability information
- Since:
 - 10.0.0
 
 - 
    
    
(nullable) caching :('all'|'none'|'visitedByCurrentIterator'|'visitedByOffset')
 - 
    
      Optional detailed caching capability information
- Since:
 - 10.0.0
 
 - 
    
    
implementation :"iteration"|"randomAccess"
 - 
    
      The type of implementation for fetchByOffset method. Possible values are:
- "iteration": the implementation uses fetchFirst iteratively to find the result
 - "randomAccess": the implementation uses random access to find the result
 
- Since:
 - 4.2.0
 
 - 
    
    
(nullable) totalFilteredRowCount :('exact'|'none')
 - 
    
      Indicates whether total filtered row count can be returned. The total filtered row count is a count of all the rows that can be iterated after applying any filterCriterion. Possible values are:
- "exact": The exact total filtered row count can be returned through the iterator results.
 - "none": Total filtered row count cannot be returned.
 
- Since:
 - 14.0.0