borland Packages Class Hierarchy datastore Package Index
java.lang.Object +----borland.datastore.SaveListener +----borland.datastore.BTree +----borland.datastore.StreamVerifier
Variables Properties MethodsThe StreamVerifier class is used to verify the integrity of a file stream (DataStore.FILE_STREAM) or DataSet stream (DataStore.TABLE_STREAM).
public static final int DATA = 0x0001Display the data in the stream.
public static final int ERRORS = 0x0004Display errors encountered during of stream verification.
public static final int PROGRESS = 0x0002Display progress of stream verification.
public static final int SILENT = 0x0008With this set, all other display mask settings are ignored if there are no errors. If there are errors detected, the stream will be reverified with the other display mask settings.
public static final int SILENT_VERBOSE = (SILENT|VERBOSE)Same as SILENT|VERBOSE.
public static final int VERBOSE = (DATA|PROGRESS|ERRORS)Enable all display options.
public static final void verify(borland.datastore.DataStore dataStore, int displayMask, int errorCount)Checks the ingetrity of all the streams in the DataStore. A DataStoreException is thrown if there are any errors detected.
Parameters:
public static final void verify(borland.datastore.DataStore dataStore, java.lang.String storeName, int displayMask, int errorCount)Checks the ingetrity of the storeName stream inside the DataStore. A DataStoreException is thrown if there are any errors detected.
Parameters:
public static final void verify(borland.jbcl.dataset.DataSet dataSet, int displayMask, int errorCount)Checks the ingetrity of all DataStore.TABLE_STREAM types used by this DataSet. A DataSetException is thrown if there are any errors detected.
Parameters: