com.google.gdata.data.spreadsheet
Class Data

java.lang.Object
  extended by com.google.gdata.data.AbstractExtension
      extended by com.google.gdata.data.ExtensionPoint
          extended by com.google.gdata.data.spreadsheet.Data
All Implemented Interfaces:
Extension

public class Data
extends ExtensionPoint

Describes a data region of a table.


Nested Class Summary
static class Data.InsertionMode
          Insertion mode.
 
Nested classes/interfaces inherited from class com.google.gdata.data.ExtensionPoint
ExtensionPoint.CumulativeBlobHandler, ExtensionPoint.ExtensionHandler
 
Constructor Summary
Data()
          Default mutable constructor.
Data(Data.InsertionMode insertionMode, java.lang.Integer numberOfRows, java.lang.Integer startIndex)
          Immutable constructor.
 
Method Summary
 void addColumn(Column column)
          Adds a new column.
 void declareExtensions(ExtensionProfile extProfile)
          Declares the set of expected Extension types for an ExtensionPoint within the target extension profile.
 java.util.List<Column> getColumns()
          Returns the columns.
static ExtensionDescription getDefaultDescription(boolean required, boolean repeatable)
          Returns the extension description, specifying whether it is required, and whether it is repeatable.
 Data.InsertionMode getInsertionMode()
          Returns the insertion mode.
 java.lang.Integer getNumberOfRows()
          Returns the number of rows in the data section.
 java.lang.Integer getStartIndex()
          Returns the index of the first row of the data section (inclusive).
 boolean hasColumns()
          Returns whether it has the columns.
 boolean hasInsertionMode()
          Returns whether it has the insertion mode.
 boolean hasNumberOfRows()
          Returns whether it has the number of rows in the data section.
 boolean hasStartIndex()
          Returns whether it has the index of the first row of the data section (inclusive).
 void setInsertionMode(Data.InsertionMode insertionMode)
          Sets the insertion mode.
 void setNumberOfRows(java.lang.Integer numberOfRows)
          Sets the number of rows in the data section.
 void setStartIndex(java.lang.Integer startIndex)
          Sets the index of the first row of the data section (inclusive).
 java.lang.String toString()
           
 
Methods inherited from class com.google.gdata.data.ExtensionPoint
addExtension, addRepeatingExtension, generateCumulativeXmlBlob, getExtension, getExtensions, getHandler, getRepeatingExtension, getRepeatingExtensions, getXmlBlob, hasExtension, hasRepeatingExtension, parseCumulativeXmlBlob, removeExtension, removeExtension, removeRepeatingExtension, setExtension, setXmlBlob, visit
 
Methods inherited from class com.google.gdata.data.AbstractExtension
disableStrictValidation, enableStrictValidation, generate, getExtensionLocalName, getExtensionNamespace, isImmutable, isStrictValidation, setImmutable
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

Data

public Data()
Default mutable constructor.


Data

public Data(Data.InsertionMode insertionMode,
            java.lang.Integer numberOfRows,
            java.lang.Integer startIndex)
Immutable constructor.

Parameters:
insertionMode - insertion mode.
numberOfRows - number of rows in the data section.
startIndex - index of the first row of the data section (inclusive).
Method Detail

declareExtensions

public void declareExtensions(ExtensionProfile extProfile)
Description copied from class: ExtensionPoint
Declares the set of expected Extension types for an ExtensionPoint within the target extension profile. The base implementation does not declare any extensions, but can be overridden by specific types of ExtensionPoints that always contain a well-defined set of extensions.

Overrides:
declareExtensions in class ExtensionPoint
Parameters:
extProfile - the ExtensionProfile to initialize.

getColumns

public java.util.List<Column> getColumns()
Returns the columns.

Returns:
columns

addColumn

public void addColumn(Column column)
Adds a new column.

Parameters:
column - column

hasColumns

public boolean hasColumns()
Returns whether it has the columns.

Returns:
whether it has the columns

getInsertionMode

public Data.InsertionMode getInsertionMode()
Returns the insertion mode.

Returns:
insertion mode

setInsertionMode

public void setInsertionMode(Data.InsertionMode insertionMode)
Sets the insertion mode.

Parameters:
insertionMode - insertion mode or null to reset

hasInsertionMode

public boolean hasInsertionMode()
Returns whether it has the insertion mode.

Returns:
whether it has the insertion mode

getNumberOfRows

public java.lang.Integer getNumberOfRows()
Returns the number of rows in the data section.

Returns:
number of rows in the data section

setNumberOfRows

public void setNumberOfRows(java.lang.Integer numberOfRows)
Sets the number of rows in the data section.

Parameters:
numberOfRows - number of rows in the data section or null to reset

hasNumberOfRows

public boolean hasNumberOfRows()
Returns whether it has the number of rows in the data section.

Returns:
whether it has the number of rows in the data section

getStartIndex

public java.lang.Integer getStartIndex()
Returns the index of the first row of the data section (inclusive).

Returns:
index of the first row of the data section (inclusive)

setStartIndex

public void setStartIndex(java.lang.Integer startIndex)
Sets the index of the first row of the data section (inclusive).

Parameters:
startIndex - index of the first row of the data section (inclusive) or null to reset

hasStartIndex

public boolean hasStartIndex()
Returns whether it has the index of the first row of the data section (inclusive).

Returns:
whether it has the index of the first row of the data section (inclusive)

getDefaultDescription

public static ExtensionDescription getDefaultDescription(boolean required,
                                                         boolean repeatable)
Returns the extension description, specifying whether it is required, and whether it is repeatable.

Parameters:
required - whether it is required
repeatable - whether it is repeatable
Returns:
extension description

toString

public java.lang.String toString()
Overrides:
toString in class java.lang.Object