public interface

IBatchInterrupted

com.google.gdata.data.batch.IBatchInterrupted
Known Indirect Subclasses

Class Overview

Shared BatchInterrupted interface between old and new data models.

Summary

Public Methods
abstract String getContent()
Returns the content of the interrupted element.
abstract ContentType getContentType()
Returns the content type of the interrupted element.
abstract int getErrorCount()
Returns the number of entries which had errors.
abstract String getReason()
Returns the reason this batch was interrupted.
abstract int getSkippedCount()
Returns the number of entries which were parsed but not processed.
abstract int getSuccessCount()
Returns the number of entries which processed successfully.
abstract int getTotalCount()
Returns the number of entries which were parsed.

Public Methods

public abstract String getContent ()

Returns the content of the interrupted element.

Returns
  • the content of the element.

public abstract ContentType getContentType ()

Returns the content type of the interrupted element.

Returns
  • the content type.

public abstract int getErrorCount ()

Returns the number of entries which had errors.

Returns
  • the number of entries which failed.

public abstract String getReason ()

Returns the reason this batch was interrupted.

Returns
  • the reason for the interruption.

public abstract int getSkippedCount ()

Returns the number of entries which were parsed but not processed.

Returns
  • the number of skipped entries.

public abstract int getSuccessCount ()

Returns the number of entries which processed successfully.

Returns
  • number of successfully processed entries.

public abstract int getTotalCount ()

Returns the number of entries which were parsed.

Returns
  • total number of parsed entries.