Package com.stimulsoft.report.dictionary
Interface IStiEnumerator
- All Known Subinterfaces:
IStiBusinessObject,IStiDataSource
- All Known Implementing Classes:
StiBusinessObjectSource,StiCassandraSource,StiChart,StiCrossDataBand,StiCrossTab,StiCsvSource,StiDataBand,StiDataSource,StiDataSourceEmpty,StiDataStoreSource,StiDataTableSource,StiDbUserSource,StiDuckDbSource,StiEnumerableSource,StiGridControl,StiHierarchicalBand,StiJDBCSource,StiJsonSource,StiMsSqlSource,StiMySqlSource,StiOdbcSource,StiOleDbSource,StiOracleSource,StiPostgreSQLSource,StiSqlSource,StiTable,StiTableOfContents,StiUserSource,StiVirtualDataSource,StiXmlSource
public interface IStiEnumerator
Describes inteface that is used for moving in the data list.
-
Method Summary
Modifier and TypeMethodDescriptionvoidFirst()Sets a position at the beginning.intgetCount()Gets count of elements.booleangetIsBof()Gets or sets value indicates that this position specifies to the beginning of data.booleanGets value indicates that no data.booleangetIsEof()Gets or sets value indicates that this position specifies to the data end.intGets the current position.voidLast()Sets a position on the last element.voidNext()Sets a position on the next element.voidPrior()Sets a position on the previous element.voidsetIsBof(boolean value) voidsetIsEof(boolean value) voidsetPosition(int value)
-
Method Details
-
First
void First()Sets a position at the beginning. -
Prior
void Prior()Sets a position on the previous element. -
Next
void Next()Sets a position on the next element. -
Last
void Last()Sets a position on the last element. -
getPosition
int getPosition()Gets the current position. -
setPosition
void setPosition(int value) -
getCount
int getCount()Gets count of elements. -
getIsEof
boolean getIsEof()Gets or sets value indicates that this position specifies to the data end. -
setIsEof
void setIsEof(boolean value) -
getIsBof
boolean getIsBof()Gets or sets value indicates that this position specifies to the beginning of data. -
setIsBof
void setIsBof(boolean value) -
getIsEmpty
boolean getIsEmpty()Gets value indicates that no data.
-