com.sap.ip.me.api.smartsync
Interface RowDescriptorIterator

All Superinterfaces:
DescriptorIterator

public interface RowDescriptorIterator
extends DescriptorIterator

An iterator over a collection of RowDescriptor objects.

The typical usage is:
Where syncBoDesc is a given SyncBoDescriptor

   RowDescriptorIterator rowDescIterator = syncBoDesc.getAllRowDescriptors();
   while(rowDescIterator.hasNext()){
     RowDescriptor rowDesc = rowDescIterator.next();


   }
  
The number of Row descriptors objects in the iteration.
   int Size = rowDescIterator.size();
   

Version:
2.1
Author:
SAP

Method Summary
 RowDescriptor next()
          Returns the next RowDescriptor element in the iteration.
 
Methods inherited from interface com.sap.ip.me.api.smartsync.DescriptorIterator
hasNext, nextElement, size
 

Method Detail

next

public RowDescriptor next()
Returns the next RowDescriptor element in the iteration.

Returns:
the next RowDescriptor element in the iteration


Copyright © 2005 SAP AG. All Rights Reserved.