| java.lang.Object | ||||
| ↳ | com.google.gdata.data.AbstractExtension | |||
| ↳ | com.google.gdata.data.ExtensionPoint | |||
| ↳ | com.google.gdata.data.BaseEntry<E extends com.google.gdata.data.BaseEntry> | |||
| ↳ | com.google.gdata.data.spreadsheet.WorksheetEntry | |||
One worksheet, when listing all worksheets within a spreadsheet. For instance, this might list Sheet1, Sheet2, Sheet3, etc.
| Constants | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| String | KIND | Kind category term used to label the entries that contains worksheet data. | |||||||||
| Fields | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| CATEGORY | Category used to label entries that contain worksheet data. | ||||||||||
|
[Expand]
Inherited Fields | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
From class
com.google.gdata.data.BaseEntry
| |||||||||||
From class
com.google.gdata.data.ExtensionPoint
| |||||||||||
From class
com.google.gdata.data.AbstractExtension
| |||||||||||
| Public Constructors | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
Constructs a new uninitialized entry to be populated by the
GData parsers.
| |||||||||||
Constructs a new entry with the given row count and column count
| |||||||||||
Constructs a new entry by doing a shallow copy from another BaseEntry
instance.
| |||||||||||
| Public Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
Declares any extensions.
| |||||||||||
Gets the URL for this worksheet's cells feed.
| |||||||||||
Gets the total number of columns.
| |||||||||||
Gets the URL for this worksheet's list feed.
| |||||||||||
Gets the total number of rows.
| |||||||||||
Sets the total number of columns.
| |||||||||||
Sets the total number of rows.
| |||||||||||
|
[Expand]
Inherited Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
From class
com.google.gdata.data.BaseEntry
| |||||||||||
From class
com.google.gdata.data.ExtensionPoint
| |||||||||||
From class
com.google.gdata.data.AbstractExtension
| |||||||||||
From class
java.lang.Object
| |||||||||||
From interface
com.google.gdata.data.Extension
| |||||||||||
From interface
com.google.gdata.data.IAtom
| |||||||||||
From interface
com.google.gdata.data.IEntry
| |||||||||||
From interface
com.google.gdata.data.Kind.Adaptable
| |||||||||||
From interface
com.google.gdata.data.Kind.Adaptor
| |||||||||||
Kind category term used to label the entries that contains worksheet data.
Constructs a new uninitialized entry to be populated by the GData parsers.
Constructs a new entry with the given row count and column count
| rowCount | The number of rows in the worksheet |
|---|---|
| colCount | The number of columns in a worksheet |
Constructs a new entry by doing a shallow copy from another BaseEntry instance.
| sourceEntry |
|---|
Declares any extensions.
| extProfile | The ExtensionProfile to initialize. |
|---|
Gets the URL for this worksheet's cells feed.
With this feed, you can query for arbitrary ranges of cells.
Gets the total number of columns. This refers to the hard bound on columns. It is possible that your spreadsheet has many empty columns, all of which are counted in this count. Column positions 1 to getColCount() are valid.
Gets the URL for this worksheet's list feed.
You can then create a query using this URL to query this worksheet's rows, using the very powerful query model.
Gets the total number of rows. This refers to the hard bound on rows. It is possible that your spreadsheet has many, many empty rows, all of which are counted in this count. Column positions 1 to getRowCount() are valid.
Sets the total number of columns. If the new number of columns is greater than the old, (new-old) blank columns will be appended to the end. If the new number of columns is less than the old, then (old-new) columns will be removed from the end which will DELETE ALL DATE IN DELETED COLUMNS.
| count | The new column count. |
|---|
Sets the total number of rows. If the new number of rows is greater than the old, (new-old) blank rows will be appended to the end. If the new number of rows is less than the old, then (old-new) rows will be removed from the end which will DELETE ALL DATE IN DELETED ROWS.
| count | The new row count. |
|---|